Tables

Start with this code:

<table>
NOTE: Make sure you end the code with:
</table>

You can add extras to this part of the table, but don't make a whole new code. Examples of extras you can add:
bgcolor=COLOR
background=IMAGE URL
border=NUMBER
bordercolor=COLOR
cellpadding=NUMBER
cellspacing=NUMBER

You can either do bgcolor OR background They can all go in one code, like this:

<table bgcolor=white border=4 bordercolor=blue cellpadding=5 cellspacing=3>

Now you can add the rows. After code #1, you must type this:

<tr>

Depending on how many columns you want, you can repeat this code over and over after code #2. Each one creates a new column (the part going down). If you only want a row with nothing separating it, write it once.

<td>TEXT GOES HERE</td>

Now, after you make all the columns you need, you must end the row, by doing this:

</tr>

Now, you can repeat steps #2-4 as many times as you like to make numerous rows with the same number of columns.

Remember to always end the table code with:

</table>

Examples of FINISHED tables:
Text Text Text Text
Text
Text
Text
Text

<table bgcolor=lime border=4 bordercolor=blueviolet cellpadding=5 cellspacing=3><tr><td colspan=4> <center>Text Text Text Text <tr><td><center>Text<td><center>Text <td><center>Text<td><center>Text</table>

Text
Text
Text

<table border=4 bordercolor=blue> <tr><td bgcolor=white> <font color=blueviolet>Text <tr><td bgcolor=blueviolet> <font color=white>Text<tr><td bgcolor=white> <font color=blueviolet>Text</table>

Text Text
Text Text

<table border=5 bordercolor=blueviolet cellspacing=0 cellpadding=2 rules=rows><tr><td bgcolor=aqua> <font color=magenta>Text<td bgcolor=lime> <font color=dodgerblue>Text <tr><td bgcolor=magenta> <font color=aqua>Text<td bgcolor=dodgerblue> <font color=lime>Text</table>

Back To HTML Help