Jump to content
xisto Community

alextepes

Members
  • Content Count

    2
  • Joined

  • Last visited

  1. By these terms, that would mean that I'm a hacker.The network engineers are hackers.The word hacker isn't something that can be described by some online references or whatever.These days there are script kiddies who call themselves hackers, they pick up a coded vunerability script online then use it, This isn't hacking, the person who programmed it, made it so that it could exploit a fault automatically, that person is considered still a programmer, more notable a viral programmer.Hackers have really disappeared, and theres no sure way to know if anyones a hacker, but there are script kiddies, and well above that would be a group of script kiddies, which would be your hacking teams that you hear about online, Not updating your apache or php or whatever is the result of poorly managed servers, that's why you do not see websites like Youtube go offline to script kiddies because they have paid professionals to keep their servers up to date.What you have to do is be quick enough to update your servers to beat automated programs, thats it,and code your site properly so they can't execute code though $_GET or $_POST.
  2. The best way to do it all is by hand and in notepad, that's the sure-proven way to learn HTML/PHP/CSS If you need to know something specific like "How do to design a div" etc, Google will help, learn whatever you want, none of the programs out there will help you achieve what you want, because you have a design inside your head which you want to do, why do you think there are a whole bunch of designs out there? The best thing to learn first is how to make div designs. Which is really easy you don't even need CSS to learn div's Little to no styling: <html><head></head><body><div id="left-top" style="float: left; padding-left: 25px;"><h2>Menu</h2></div><div style="clear: both;"></div><div id="left" style="float: left; padding-left: 25px;"><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br></div><div id="center-title" style="float: center; padding-left: 150px;"><h2>Main</h2></div><div id="center" style="float: center; padding-left: 150px;">Content that will be displayed.</div><div style="clear: both;"></div><div id="center-bottom" style="float: bottom; padding-left: 150px;">© My weird web designs.</div></body></html> Make it look "cool" <html><head></head><body bgcolor="#000033"><div id="left-top" style="float: left; padding-left: 25px; background: #003333; width: 100px; padding-top: 0px; height: 50px;"><h2>Menu</h2></div><div style="clear: both;"></div><div id="left" style="float: left; padding-left: 25px; background: #3399CC; width: 100px; padding-top: 15px;"><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br><a href="#">Menu</a><br></div><div id="center-title" style="float: center; padding-left: 150px; background: #003333; width: 500px;"><h2>Main</h2></div><div id="center" style="float: center; padding-left: 150px; background: #3399CC; width: 500px; height: 300px;">Content that will be displayed.</div><div style="clear: both;"></div><div id="center-bottom" style="float: bottom; padding-left: 150px; background: #3399CC; width: 500px;">© My weird web designs.</div></body></html> It's pretty simple, you can make div's float on top of each other by using z-index as well.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.