how to have one section span two rows html 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>