I have something t go along with this, it is my home-made html cheatsheet
Text---------------------------------------------------------------Texy
<b>bold</b>
<i>italicized</i>
<font size=+2>Larger</font>
<font size=-2>Smaller</font>
<u>unde rlined word</u>
FACE="font_name"
<font color="Red">Hey I'm red!</font>
Layout------------------------------------------------------------Layout
<html>
<head><title>Title goes here</title></head>
<body>Body goes here</body>
</html>
Headings---------------------------------------------------------Headings
(Large)= <h1>Bob fell over the chicken. [H1]</h1>
(Small)= <h6>Bob fell over the chicken. [H6]</h6>
Horizontal---------------------------------------------------------Lines
<hr width=(Number)> is like -------------------------
Paragraph--------------------------------------------------------Paragraph
<p>Paragraph</p>
(Spacing {Like hitting enter}) <br> No closing tag.
Alignment---------------------------------------------------------Alignment
(Left Alignment) <h1 align=left>Left Align</h1>
(Center Alginment) <h1 align=center>Center Align</h1>
(Right Alignment) <h1 align=right>Right Align</h1>
Links---------------------------------------------------------------Links
<a href="http://www.(Site Name).com</a>
Emailing------------------------------------------------------------Emailing
<a href="mailto

Name)@(domain).com"</a>
Images-------------------------------------------------------------Images
<img src="image.ext" width="x" height="x" border="x" alt="x">
(Hyperlinking Images) <a href="http://www.site.com/"><img src="location" align="center">
Body----------------------------------------------------------------Attributes
BACKGROUND="location_of_image" - Background image for web page. Example: If you have kitten.jpg in the same directory as your HTML file, use <body background="kitten.jpg"> to load it as your background image.
BGCOLOR="#hexadecimal_here" - Hexadecimal Color Code for Background Color
LINK="#hexadecimal_here" - Hexadecimal Color Code for Links (if left blank, most browsers default to blue.)
VLINK="#hexadecimal_here" - Hexadecimal Color Code for Links the User has Already Visited (if left blank, most browsers default to purple.)
TEXT="#hexadecimal_here" - Hexadecimal Color Code for Text Color
Lists----------------------------------------------------------------Lists
vUnordered Listv
<ul>
<li>pencils
<li>pens
<li>erasers
<li>paper
<li>glue
</ul>
vOrdered Listv
<ol>
<li>pencils
<li>pens
<li>erasers
<li>paper
<li>glue
</ol>
Tables----------------------------------------------------------------Tables
<table border="4">
<tr>
<th>What are tables used for?</th>
</tr>
<tr>
<td>Tables are used to make data easier to interpret or to just
give your document more impact.</td>
</tr>
</table>
Music-------------------------------------------------------------------Music
<embed src="filename.ext" width="x" height="x" autoplay="True/False" hidden="True/False" loop="True/False" volume="Number"></embed>
Frames-----------------------------------------------------------------Frames
<frameset cols="15%,85%">
<frame src="menu_bar.htm" name="sidemenu">
<frame src="main.htm" name="mainwindow">
</frameset>
Looks like l_ l___l 15% Left 85% Right