TABLES!!!

TAGS AND ATTRIBUTES

<TABLE>...</TABLE> / Example / Creates a table.
align="x" / align=”left” / Horizontal alignment of the contents of the cells within this row. Possible values are left, center, right.
border="x" / border=”5” / Specifies the width, in pixels, or the table border. The default is zero (0).
bordercolor="x" / bordercolor=”red” / Indicates the border color of your table.
bgcolor="x" / bgcolor=”tan” / Changes the background color of the entire table.
background="url" / background=”h:\ images\bg.jpg” / Allows you to use an image as the background for your table.
cellspacing="x" / cellspacing=”3” / Specifies the amount of space between the cell border and the table border.
cellpadding="x" / cellpadding=”3” / Specifies the amount of space between the cell border and its contents.
height="x" / height=”25” / Specifies the height of a table in pixels, or as a percentage of the browser window)
width="x" / width=”80%” / Specifies the width of a table in pixels, or as a percentage of the browser window)
<TR>...</TR> / Creates a table row.
align="x" / align=”center” / Horizontally aligns the contents of each cell within this row. Possible values are left, right and center.
valign="x" / valign=”middle” / Vertically aligns the contents of each cells within this row. Possible values are top, middle and bottom.
bgcolor="x" / bgcolor=”pink” / Changes the background color of this row.
height="x" / height=”30” / Specifies the height of this row in pixels.
<TH>...</TH> / Table header tag. Bolds and centers the cell contents.
align="x" / align=”right” / Horizontally aligns the contents of the cell. Possible values are left, right and center.
valign="x" / valign=”bottom” / Vertically aligns the contents of the cell. Possible values are top, middle and bottom.
bgcolor="x" / bgcolor=”tan” / Changes the background color of this cell.
background="url" / see sample above / Allows you to use an image as the background for this cell.
height="x" / height=”20” / Specifies the height of this cell in pixels.
colspan="x" / colspan=”2” / Specifies the number of columns this cell will span (left to right).
rowspan="x" / rowspan=”3” / Specifies the number of row this cell will span (top to bottom).
width="x" / width=”40” / Specified the cell width in pixels. Setting a x% will make the cell dynamic within the context of the table.
<TD>...</TD> / Table data, creates a new cell in the row.
Same attributes as theTH tag
<CAPTION>...</CAPTION> / Specifies a table caption (title).
align="x" / align=”top” / The position of the caption. Possible values are top and bottom.