Tables
Source: src/elements/tables/tables
Table Elements are usually used to show the income limits for applicants with different situations (like household size or marital status).
| Family Size | Yearly Income | Weekly Income |
| 1 | $27,816 | $535 |
| 2 | $36,372 | $699 |
| 3 | $44,928 | $864 |
| 4 | $53,484 | $1,029 |
| ... | ... | ... |
<div class="table">
<table>
<thead>
<tr>
<td><strong>Family Size</strong></td>
<td><strong>Yearly Income</strong></td>
<td><strong>Weekly Income</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>$27,816</td>
<td>$535</td>
</tr>
<tr>
<td>2</td>
<td>$36,372</td>
<td>$699</td>
</tr>
<tr>
<td>3</td>
<td>$44,928</td>
<td>$864</td>
</tr>
<tr>
<td>4</td>
<td>$53,484</td>
<td>$1,029</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>
</tbody>
</table>
</div>