I've always been told 'master tables and you've pretty much mastered html'. So, here's how to creat a table. it will be a simple one. Tables can be used for layouts (for those who dont like iFrames, Taco (= ) well here it is :

Code:
<table>
 * <tr>
 * * *<td> Text here</td>
 * </tr>

 *<tr>
 * * *<td> This Appears Next To "Text here"</td>
 *</tr>
</table>
Ok the way that works:

<table> - this is the beggining of the table. it starts it off. you can put the width and height of the table here.

<tr> - this starts a new row. The one going horizontally.

<td> - this is a column. also known as a cell. The table is made up of cells.

</tr> </td> </table> - these tags just close the previous stated.