Tables can consist of any number of data rows after the header. The tbody
element begins the body (data) area, the same tr
element creates a row, and td
elements create data cells in each row.
<table border="1">
....
<tbody>
<tr>
<td>January </td>
<td>$100 </td>
</tr>
</table>
Month |
Savings |
January |
$100 |
February |
$50 |