Simple Table w/6 Cells

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

This is cell 1 This is cell 2 This is cell 3
This is cell 4 This is cell 5 This is cell 6

code for above table:

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