Quick Reference Sheets for Webmasters
Quick Reference sheets are packed full of useful information for all webmasters.
HTML Reference Sheet
HTML Tag List
<caption>
This element sets a caption or heading to display with a table. This tag cannot be set more than once within one table. The caption tag will usually appear centered to the table just above it.
Attributes
none. all attributes are deprecated
example:
<table>
<caption>This is a table caption</caption>
<tr>
<td>Some Cell</td>
</tr>
</table>