HTML Guide
-[ games ]-
 > Escape Velocity
 > Diablo 2 -
 > WarCraft 3
 > StarCraft -
 > Cheat Codes

-[ humor ]-
 > Joke Archive -
 > Junk

-[ opinions ]-
 > Rants
 > Reviews

-[ misc ]-
 > Quote Archive
 > Stories -
 > Link Archive

-[ general ]-
 > About
 > Contact Info
 > Copyrights
 > Contribute
 > Support the Lair!

-[ store ]-
 > Products -
 > Styles -
 > Store FAQ -

-[ forums ]-
 > Imperial Lounge
 > General Discussion
 > Member Lounge

-[ blog.evula.net ]-
 > The Emperor's Blog
 > Get Your Own!

-[ com / net / org / evn ]-

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.