Quote:
Originally posted by RockyZ My suggestion about HTML is read a short book about it then throw away the book. Open up frontpage and you probably won't ever need HTML knowledge besides the simple <center> tags. |
Cover your ears and eyes DON'T listent to that advice.....!!!... well you can listen to the read a book bit if you like!
Instead fire up your web browser find a webpage and save it to your computer. Then open the .htm/.html file with notepad and have a play around - open the file with your web browser and see what changes you have made. Don't start with an overly complicated web site and preferably one coded in just html.
A basic structure for a web page goes:
Code:
<html>
<head>
<title>The Title</title>
</head>
<body>
</body>
</html>
The <head> section contains things that dont actually appear in on the page, such as the title, any meta tags, javascript functions etc... When starthing out you probably wont put much here.
The <body> section contains the main body of the page, i.e. all the text, images etc...
But really the best way to learn HTML is to go view>source on various web pages and see if you can figure out what each part of the html is doing to the page and what it's purpose is.