here are some basic tags for tables. its very easy.
<table border=2>...this shows that what is to follow will be a table, i chose the border to be 2
<tr>...this starts a row. next, you will put in <th> for a table header, then you close the header with </th>
</tr>ends the row
<tr>...to start a new row
<td>...to put in data, </td>...closes the cell
</tr>..ends row
</table>...ends the table
using these tags, you can insert as many rows and columns that you need
another of my favorite features is marquee (<marquee></marquee>), which makes text scroll across the page
you can also add javascript to really fix things up