<b> = bold text

</b> = cancels bold

<font color="red"> = how to change color - you can use color names or numbers.

Color Page Help

<font face="georgia"> = changes font type

TIP: If someone does not have the specified font on their computer it will look like arial to them.

</font> = cancels font change

<font size="4"> = changes font size

<p style="font-size:65px"> = another way to change font size

<big> = will make font bigger

</big> = will cancel font going bigger and return to normal size

<br> = makes a break (like hitting enter in normal text)

<p> = starts a paragraph *NOTE* You do not have to use this, for some it's easier

</p> = ends paragraph

<p align="center"> = centers text

<p align="right"> = puts text on the right

<p align="left"> = puts text on the left

<p align="justify"> = justifies text

<img src="http://www.image.jpg"> = places an image on page TIP: Is easier to use a program like Photobucket to get links for your images as opposed to doing it from your computer

<img src="http://www.image.jpg" align="center"> = places an image in the center

<img src="http://www.image.jpg" align="left"> = places an image on the left

<img src="http://www.image.jpg" align="right"> = places an image on the right

<center> = centers text or images or table

<p align="center"> = centers text

</center> = cancels the centering

<a href="mailto:stevesprettyangel_8@yahoo.com">Amber</a> = places a link to email me on my name...will look like this

Amber

<a href="http://www.myleague.com/4fun" TARGET="_blank">4fun</a> = places a link to 4fun home page on the word 4fun and will open in a new window or tab

<a href="http://www.myleague.com/4fun">4fun</a> = places a link to 4fun home page on the word 4fun and will open in the current window or tab

<table> = starts a table

</table> = ends a table

<tr> = table row

<td> = table cell

<td width="30%"> = defines how wide a cell will be

<td colspan="3"> = makes a cell go wider than 1 cell
*TIP* If you want a Title Bar on your Whole table, this is what you would use, defining how many columns there are going to be. Colspan literally means Column Span.

</tr> = ends the row

</td> = ends the cell

<table border="1" bordercolor="red"> = defines the border around the table how big and color

<table width="50%" background="http://www.image.jpg"> = defines how wide the table will be and the background with a picture means that the picture you choose will be the background for the entire table

An example of how a table will look is below:
<center>
<table border="1" bordercolor="red">
<tr>
<td>
HI
</td>
<td>
This is for a
</td>
<td>
3 cell table
</td>
</tr>
<tr>
<td>
With 2 rows
</td>
<td>
and nothing
</td>
<td>
else
</td>
</tr>
</table>
</center>


And this is what it would like on the page:

HI This is for a 3 cell table
With 2 rows and nothing else