Start off your table code with the basic table tag. This is a table with 1 column and 1 row.
The tr tag adds a new row. The td tag adds a new cell (box) in that row. So if you want to add another cell to that row, you would use this code:
To add another row, use this code:
To customize your tables, add these codes right after the first table tag.
border="BORDER WIDTH"
bgcolor="#HEX COLOR CODE"
colspan=NUMBER (this makes a row take up all of the cells in that row)
cellspacing="NUMBER" (this adds a space between the cells)
width="NUMBER"
style="background-image:url(yourfilename.gif)" (adds a background image)
