I built this page to help people
learn basic HTML
This is a Basic HTML page
<HTML>
<TITLE>My page</TITLE>
<BOBY BGCOLOR="BLACK" TEXT="BLUE" LINK="BLUE">
<CENTER>
<FONT SIZE="+1" COLOR"RED"><B><I>This is my page</I></B></FONT>%lt;BR>
<IMG SRC="IMAGES/THEPICTURE">
<A HREF="HTTP://ANGELFIRE.COM/SK/GOODFRIENDS/HTMLBASICS.HTML">HTML Basics
</CENTER>
</BODY>
</HTML>
Now i will explain what all of that nonsence means
<HTML>
This begins a web page
<TITLE>My page</TITLE>
What ever you put were you seeMy pagewill be place up in the top left corner of your page
were you now see HTML Basics.
<BOBY BGCOLOR="BLACK" TEXT="BLUE" LINK="BLUE" ALINK="BLUE "VLINK="BLUE"></BODY>
The<BODY>flag starts everything viewable in your page.
The<BODY BGCOLOR="BLACK">sets the color of your back ground
The<BODY TEXT="BLUE">sets the color of the text on your page.
The<BODY LINK="BLUE"> sets the color of the links on your page.
The</BODY>flag ends the body flag
<CENTER></CENTER>
Any thing between these flags will be centered on your page.
<FONT SIZE="+1" COLOR"RED"><B><I>This is my page</I></B></FONT><BR>
The<FONT>flag controls how the font appears on your page.
The<FONT SIZE="+1">controls the size that the font will appear on you page
Sizes range from"-6"which is small, to"+6"which is large.
<IMG SRC="IMAGES/THEPICTURE">
<A HREF="HTTP://ANGELFIRE.COM/SK/GOODFRIENDS/HTMLBASICS.HTML">HTML Basics
</BODY>
</HTML>