<table>
<caption>Table Caption</caption>
<thead>
<tr>
<th>column A</th>
<th>column B</th>
</tr>
</thead>
<tbody>
<td>1A</td>
<td>2A</td>
<td>1B</td>
<td>2B</td>
</tbody>
HTML Table
Caption
Elements to specify each part of a table
Rows
Cells
Basic Srtucture
<table>
<caption>Table Caption</caption>
<thead>
<tr>
<th>column A</th>
<th>column B</th>
</tr>
</thead>
<tbody>
<tr>
<td>1A</td>
<td>2A</td>
</tr>
<tr>
<td>1B</td>
<td>2B</td>
</tr>
</tbody>