The table header
The table body
with three
columns
/* empty CSS file */
<!-- Create the table with a 1 pixel border --> <!-- Change it to 5 --> <table border="1"> <!-- Define the table header to span two columns --> <thead> <!-- Define the the table header row --> <!-- Change colspan to 2 --> <tr> <th colspan="3">The table header</th> </tr> </thead> <tbody> <!-- Define the the first table body row with two cells --> <tr> <td>The table body</td> <td>with three</td> <td>columns</td> </tr> <!-- Copy everything from <tr></tr> above and paste it a few times below these comments. --> <!-- That will add more lines to the table. --> </tbody> </table>