HTML Tables

<TABLE>

</TABLE>

surrounds the table. Options are BORDER=n, CELLSPACING=n, CELLPADDING=n, WIDTH=pixels or %, ALIGN={LEFT | RIGHT}

<TR>

</TR>

defines one table row

<TD>

</TD>

defines one table cell

TR and TD may include ALIGN={LEFT | CENTER | RIGHT}, VALIGN={TOP | MIDDLE | BOTTOM}, BGCOLOR=color

TD may include COLSPAN=n, ROWSPAN=n, WIDTH=pixels_or_%, NOWRAP


Next: More tables