Resources Menu


Quick Reference Sheets for Webmasters

Quick Reference sheets are packed full of useful information for all webmasters.

HTML Reference Sheet

HTML Tag List


<tfoot>
This element defines a table footer group. When used with thead and tbody, tfoot content appears at the bottom no matter what order they are defined in the table.

Attributes
align
Value(s) : right | left | center | justify
Sets the alignment of the text within the cell.
char
Value(s) : character
Specifies which character to align the text to. Requires align="char"
charoff
Value(s) : pixel | percent
Defines the alignment offset to the character specified. Requires align="char"
valign
Value(s) : baseline | bottom | middle | top
Sets the vertical text alignment within the cell based of the height of the cell.
example:
<table>
<tfoot>
<tr>
<td>this is the footer.</td>
</tr>
</tfoot>
</table>