This browser does not support basic Web standards, preventing the display of our site's intended design. May we suggest that you upgrade your browser?
NOTE: These pages will remain available for your reference, but will not actively be maintained due to UW-Eau Claire's adoption of FrontPage for web publishing.
Table captions describe the information that appears in the table. Captions default to placement above the table, but they can be placed below the table with the addition of "ALIGN=BOTTOM" to the caption code. In order to add a caption to a table, place the caption code after the initial table code as in the examples below.
|
<TABLE BORDER=1> <CAPTION>The Color Table</CAPTION> <TR> <TD>Red</TD> <TD>Green</TD> <TD>Blue</TD> </TR> <TR> <TD>Orange</TD> <TD>Yellow</TD> <TD>Purple</TD> </TR> </TABLE> |
|
<TABLE BORDER=1> <CAPTION ALIGN=BOTTOM>The Color Table</CAPTION> <TR> <TD>Red</TD> <TD>Green</TD> <TD>Blue</TD> </TR> <TR> <TD>Orange</TD> <TD>Yellow</TD> <TD>Purple</TD> </TR> </TABLE> |