A 3x3 table:
Achieved by:
<table border='1' width='300' height='300'> <tr><td> </td><td colspan='2'></td></tr> <tr><td rowspan='2'> </td><td> </td><td> </td></tr> <tr><td> </td><td> </td></tr> </table>
You use the TD for the rowspan in the first row that the cells span, then omit a cell from each of the succeeding spanned rows.