Vertically aligns the Row to the TOP, BOTTOM, BASELINE, or CENTER.
<tr valign="top">
BGCOLOR
Specifies the background color of the Table.
<tr bgcolor="black">
<TD> Table Cell Elements
ALIGN
Aligns the Cell to the LEFT, RIGHT, or CENTER.
<td align="center">
VALIGN
Vertically aligns the Cell to the TOP, BOTTOM, BASELINE, or CENTER.
<td valign="bottom">
WIDTH
Width of the Cell in pixels or percent.
<td width="25%">
HEIGHT
Height of the Cell in pixels or percent.
<td height="40">
NOWRAP
Doesn't wrap the contents of the Cell.
<td nowrap>
BGCOLOR
Specifies the background color of the Table.
<td bgcolor="#00FF23">
COLSPAN
Spans Cell columns.
<td colspan="2">
ROWSPAN
Spans Cell rows.
<td rowspan="2">
<TH> -
Table Headings can be used anywhere <TD></TD> is.
They act exactly the same and can be used as <TD> is,
except the Default is bold and centered.