Funky Table 2 w/3 Vertical Cells

simple table w/6 cells   ----   funky table 1 w/3 horizontal cells   ----   table attributes   ----   simple horizontal frameset

This is cell 1 This is cell 2
This is cell 3

Code for this table:

<TABLE BORDER="1" CELLPADDING="1" CELLSPACING="1">
  <TR>
    <TD ROWSPAN=2>This is cell 1
    </TD>
    <TD>This is cell 2
    </TD>
  </TR>
  <TR>
    <TD>This is cell 3
    </TD>
  </TR>
</TABLE>