left up right
Tables: Basic Format
<table  summary="This is a two-column table, with a heading. 
Read the rows from left to right">
<caption>My First Table</caption>

<thead>
<tr>
<th>First Heading</th><th>Second Heading</th>
</tr>
</thead>

            
<tbody>
<tr>
<td>First Row One</td><td>First Row Two</td>
</tr>
<tr>
<td>Second Row One</td><td>Second Row Two</td>
</tr>
</tbody>

</table>