HTML tables require only three tags to build:
The best way to start is to think about tables as being a group of cells in a row, and a group of rows in a table.
First create the table:
<table> </table>
Then, within that table, create your first row:
<table>
<tr> </tr>
</table>
Finally, create your cells within the row:
<table>
<tr> <td> </td> </tr>
</table>
And then add the text within the cell:
<table>
<tr><td>cell 1</td></tr>
</table>

