Caption

<CAPTION> </CAPTION>

The command CAPTION is used to make a caption for a table. The position of the caption can be defined by using the ALIGN="ABOVE or BELOW" attribute.

The tag should appear directly below the TABLE tag, before the first TR, and, although you can use all text-level markup inside a CAPTION, it should be brief, so don't include images or large amounts of text in it.

Example:

<TABLE CELLSPACING=0 CELLPADDING=0 BORDER>
<CAPTION>
Here is the caption.
</CAPTION>
<TR>
<TD>
Text, or images, or whatever.
</TD>
</TR>
</TABLE>

Here is the caption.
Text, or images, or whatever.