A nested table is a table inside another table.
<table border="1" cellpadding="10">
<tr>
<td>Main Table Cell
<table border="1">
<tr>
<td>Nested Table Cell 1</td>
<td>Nested Table Cell 2</td>
</tr>
</table>
</td>
</tr>
</table>