An example of how you can put your site together. This is also an example of some of the tags that you can use.
<HTML> (specifies the type of page. required)
<HEAD> (required)
<TITLE>Creating a simple site with multi colored text and font sizes.</TITLE> (Text placed between the title tags will appear at the top of the browser.)
</HEAD>
<BODY BACKGROUND="" BGCOLOR="#ffffff" TEXT="#000000" LINK="#0000ff" VLINK="#800080" ALINK="#ff0000"> (This tag describes what the text on the page will look like. required.)
<CENTER><H2>This is your header, centered on the page.</H2></CENTER>
<FONT SIZE="10" COLOR="#ff0000" FACE="Times New Roman">Check out the size of this font. </FONT><P>
<H4>If you want to change the color of the text, just look for the COLOR="#ffffff" portion of the font tag.</H4>
<FONT SIZE="5" COLOR="#0000ff" FACE="ARIAL">You can also change the appearance of your text.</FONT><P>
<I><H3>This is text in italics.</H3></I><BR>
<B> This tag makes your text bold</B>
<H4>Tag Structuring-
Tags generally are started and stopped before another Tag is Started
e.g. <I>TEST </I><B>START</B><BR>
Tags can be started and stopped in other places but it is not viewed as proper coding
e.g. <I>TEST<B></I>START</B><BR>
Three <br>tags will give you only 2 blank lines<BR>
Three <p>tags will give you only 1 blank line<BR>
Heading tags have a built in line break<BR>
you want to change the color of the background, just look for the BGCOLOR="#ffffff" portion of the body tag.
</H4>
</BODY>
</HTML>
When viewed on the internet the above page looks like example 1-1.