<HTML>
<HEAD>
<TITLE>My pages title</TITLE>
</HEAD>
<BODY>
Main part of page where you will put
other tags in to make the page.
</BODY>
Basic tags.
<BR> - 'Break'. It stops the current line and starts
a new one.
<FONT> - This tag as you guess it is for text/font. Use the
following inside the font tag. Also remember that you'll need a ending
tag for 'font'. Put all the text that you wish to alter between the start
and end tags.
<FONT COLOR="***" > - This option lets you change the text
color. You can put Red Blue Green Yellow any common color will work.
<FONT SIZE="-/+" > - Change the size of you text. Sizes can
be listed numbers 1 through 7 (1 being the smallest) or by placing between
-7 and +7 (- being smaller).
<FONT FACE="font_name" > - Change the font that is displayed.
A important thing to remember is that when using this option is the visiter
to your site has to have the font on his/her computer, thus you should
keep it a widly used font.
<B> - Bold tag. Makes the text bold that is between the start
and end tags.
<U>- Underline tag. Makes the text Underlined that is between
the start and end tags.
<I> - Italic tag. Makes the text Italic that is between the
start and end tags.
<P align="left/right/center"> - Aligns the text/picture to
the left or right. It will need the ending tag of </P>.
<IMG SRC="pic_name"> - This is the image tag. You put the
name (url/address) of the picture in the equal to asset.
<A HREF="address_of_page"> - Link tag. Very important, you
don't want only one page. Have multiple pages by linking them together
or link to another site. </A> ends the link.
to make a page you might put...
<HTML>
<P align="center"><HEAD><FONT SIZE="+5"><FONT COLOR="RED">
Scott's Page
</HEAD></FONT></FONT></P><BR>
<BODY>This is my web site I hope you like it
<BR><P align="center">LINKS: <BR> <A HREF="www.yahoo.com">
YAHOO</P></A>
<BR>I hope you like my site please come back someother time </BODY>
EXAMPLE