xxxxxxxxxx
-Make New table below old table with new tr td
Or
<table border="1">
<!-- First Row with 3 Columns -->
<tr>
<td>Content 1, Row 1</td>
<td>Content 2, Row 1</td>
<td>Content 3, Row 1</td>
</tr>
<!-- Second Row with 3 Columns -->
<tr>
<td>Content 1, Row 2</td>
<td>Content 2, Row 2</td>
<td>Content 3, Row 2</td>
</tr>
<!-- Third Row with 3 Columns -->
<tr>
<td>Content 1, Row 3</td>
<td>Content 2, Row 3</td>
<td>Content 3, Row 3</td>
</tr>
<!-- Fourth Row with 2 Columns -->
<tr>
<td colspan="2">Content 1, Row 4</td>
<td>Content 2, Row 4</td>
</tr>
</table>