html table td span multiple columns code example
Example: html table span 2 rows
<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>