#1 You MUST start with this code, it begins a table.
If you don't have this code at the very beginning
of your table code, you don't have a table. <table>
#1B You can add extras to this part of the table,
but don't make a whole new code.
You can add "bgcolor=color", "border=#" "bordercolor=color",
"cellpadding=# cellspacing=#", etc.
You can either do "bgcolor=color" or " background="url" ".
They can all go in one code, like this:<table bgcolor=white border=4 bordercolor=red cellpadding=5 cellspacing=3>
#2 Now you can add the rows. After code #1, you must type this:<tr>
#3 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>where you write stuff</td>
#4 Now, after you make all the columns you need,
you must end the row, by doing this:</tr>
#5 Now you can repeat steps #2-4 as many times as you like
to make numerous rows
with the same number of columns.


#6 Once you made all the rows you want, you must end the table with this code:</table>
A finished code might look like this: <table bgcolor=white border=4 bordercolor=blue cellpadding=5 cellspacing=3><tr><td> <center>Text</td><td><center>Text</td> <td><center>Text</td><td><center>Text</td></tr> <tr><td><center>Text</td><td><center>Text</td> <td><center>Text</td><td><center>Text</table>
Text
Text
Text
Text
Text
Text
Text
Text