
<TABLE>
The start of a table definition.
<CAPTION>caption
contents</CAPTION>
The caption definition.
<TR>start
of first row definition<TH>cell contents</TH></TR>
The cell in this row is a heading cell.
<TR>start
of second row definition<TD>first cell</TD><TD>second cell</TD></TR>
There are two cells in this row for general data.
</TABLE>
End of the table definition.
The <TABLE></TABLE>
tags must surround the entire table definition. The first item inside the
table is the CAPTION, which is optional. Then you can have any number of rows
defined by the <TR></TR> tags. Within
a row you can have any number of cells defined by the <TD></TD>
or <TH></TH> tags.
Each row 0f a
table is essentially formatted independently of the rows above and below it.
© Copyright 2002 Carnegie Webhead's