<< Entities -2 | Index: HTML Basics | Next: Positioning via Tables >>

Tables

At first glance, HTML tables don’t seem like anything really special. Basically, a table defines rows and columns, like in a spreadsheet:

<table>
   <tr>
       <td>row 1, cell 1</td>
       <td>row 1, cell 2</td>
   </tr>
   <tr>
       <td>row 2, cell 1</td>
       <td>row 2, cell 2</td>
   </tr>
</table>