|
Basic Layout
Well, can't start coding until you get the basic layout of the file, now can you? Here I will show you a sample of your basic (very basic) HTML document. I will show the HTML tag required in red and below it I will explain the tag.
<HTML>
Tells the browser that this is an HTML document
<HEAD>
Begins the header section. The title of a page goes in the header, as does a bunch of other things, but they aren't really important.
<TITLE>Da Title</TITLE>
The title of the page. This is what will be seen at the top of your browser window.
</HEAD>
Ends the header.
<BODY>
Begins the body of an HTML document. All of the content of the page goes after this tag.
</BODY>
After you've said everything you're going to say, use this.
</HTML>
Tells the browser that you are done. Use it when you are.
|