Fun with Tables

  • Made up of tags that mirror structure:
    • <table>table</table>
    • <tr>table row</tr>
    • <td>cell or table data</td>
    • <caption>A caption for the table</caption>
A caption for the Table
td td
td td

 

<table border="1" align="center">
  <tr>
    <td>
td</td>
    <td>
td</td>
  </tr>
  <tr>
    <td>
td</td>
    <td>
td</td>
  </tr>
</table>

 

<< >>