Table Attritutes

simple table w/6 cells   ----   funky table 1 w/3 horizontal cells   ----   funky table 2 w/3 vertical cells   ----   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 this Table:

<TABLE BGCOLOR="#FFFFFF" WIDTH="500" HEIGHT="200" BORDER="4" CELLPADDING="5" CELLSPACING="5">
  <TR>
    <TD ALIGN=left>This is cell 1
    </TD>
    <TD ALIGN=right>This is cell 2
    </TD>
    <TD ALIGN=center>This is cell 3
    </TD>
  </TR>
  <TR>
    <TD VALIGN=bottom>This is cell 4
    </TD>
    <TD VALIGN=top>This is cell 5
    </TD>
    <TD VALIGN=middle>This is cell 6
    </TD>
  </TR>
</TABLE

Table Attributes:

BORDER: outlines the outer bounds of your table. It can help to separate your table from the rest of your page layout. To make the table border invisible, set the border=0.

BGCOLOR: background color of table.

WIDTH: Widith of entire table. Can be pixels or percentage.

HEIGHT: Height of entire table. Can be pixels or percentage.

CELLPADDING is between a cell's contents and its border.

CELLLSPACING is between the borders of each cell.


Cell Attributes:

ALIGN attribute sets the horizontal alignment of a cell's content. Can be left, right, or center.

VALIGN attribute sets the vertical alignment of a cell's content. Can be bottom, top, or middle.