Tables
Tables are a good way to organize content and data on your site, if you would like to make a table start with the following code:
<table>
Extras
Here are some extras you may want to add:
border
bordercolor
cellspacing
cellpadding
These will define the boder width, color, and space between your cells. All finished it would look like this:
<table border=# bordercolor=COLOR cellpadding=# cellspacing=#>
You can also add other attributes such as bgcolor and background, same as you can add in your BODY tag.
Adding Rows
Each row in your table will be inside this code:
<tr></tr>
Adding Colums
For every colum you want to add in your row place this code between the TR tags.
<td>Text or cell content goes here</td> Each TD tag is really just a table cell, you define what row they go in by which set of TR tags they sit between.
Rowspan and colspan
You might be wondering how you would create a table cell that spans two or more rows or colums, heres your answer
<td rowspan=2></td> That code will span two rows of table cells.
<td colspan="2"></td> That code will span two colums of table cells
Finish it all off
End your table with this code
</table>