How would I create a table like this in HTML?

<table border="1">
<tr>
<td rowspan="2">text here</td>
<td>text here</td>
<td>text here</td>
</tr>
<tr>
<td colspan="2">text here</td>
</tr>
</table>

You will need to mess with the cell sizes to make it look exact, but its the correct format.
 
Back
Top