Site hosted by Angelfire.com: Build your free website today!
MY HTML HELP FOR
BEGINNERS

Now if you leave this out I'll be realy disapointed!..

The 'Start' of any webpage

To start any webpage you MUST put the <html> code up first, this indicates to your brouser that you are about to start typing html code. Here is a basic html document you can copy for yourself!

<HTML>
<HEAD>
<TITLE>
My Document Name
</TITLE>
</HEAD>
<BODY>
Type the main content of my document here!
</BODY>
</HTML>

As you can see as I open a tag (eg <HTML>) I must aslo close it thusly by placing a '/' infront of the code like this (</HTML>).

MAIN INDEX