Forum Moderators: Robert Charlton & goodroi
<table>
<tr>
<td>Product Name 1</td><td>Product Name 2</td>
</tr>
<tr>
<td>Product Description 1</td><td>Product Description 2</td>
</tr>
etc, etc.
</table>
<table border="1" summary="Product data displayed in columns">
<caption>Data on products in this category</caption>
<thead>
<tr>
<td></td>
<th scope="col">Product one</th>
<th scope="col">Product two</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Description</th>
<td>Product one description</td>
<td>Product one description</td>
</tr>
</tbody>
</table>