| Tag Type |
Tag Start |
Tag End |
Example |
Information |
| Table Tag |
<TABLE> |
</TABLE> |
<TABLE>...HTML...</TABLE> |
Forms a container for html within your document. Valid html within container: <TR> <TD> <TH> <CAPTION> <TABLE> |
| Table Row Tag |
<TR> |
</TR> |
<TR><TD>..HTML...</TD></TR> |
Creates a row for the table that contains table data <TD> or headings <TH> |
| Table Data Tag |
<TD> |
</TD> |
<TD>...HTML...</TD> |
Creates data forming cells for the rows. Cells contain html including tables. |
| Table Heading Tag |
<TH> |
</TH> |
<TH>Nane</TH> |
Centered boldface text. Identical to table data tag <TD> |
| Caption Tag |
<CAPTION> |
</CAPTION> |
<CAPTION>Sample Table</CAPTION> |
Caption for entire table. Default centered and at top of table. Tag placed inside table, not inside row or data. |