HTML TABLES INDEX

Table Captions

Captions can be placed above a table with the <CAPTION></CAPTION> tag

The Big 4
1 2
3 4

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

The Big 4
1 2
3 4

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>

  1. Captions are descriptive table titles outside the range of the table.
  2. By default captions are centered at the top of a table.
  3. The caption can be placed at the bottom of the table with the align attribute.

Headers Headers