
| Captions can be placed above a table with the <CAPTION></CAPTION> tag
By typing this:
<TABLE BORDER=1>
<CAPTION>The Big 4</CAPTION>
<TR>
<TD>1</TD> <TD>2</TD>
</TR>
<TR>
<TD>3</TD> <TD>4</TD>
</TR>
</TABLE>
|
Or the caption can be at the bottom of the table by including the <ALIGN=> attribute within the <CAPTION> tag
By typing this:
<TABLE BORDER=1>
<CAPTION ALIGN=BOTTOM>
The Big 4</CAPTION>
<TR>
<TD>1</TD> <TD>2</TD>
</TR>
<TR>
<TD>3</TD> <TD>4</TD>
</TR>
</TABLE>
|