<TFOOT
CLASS=type
ID=value
STYLE=css1 properties>
</TFOOT>
Defines the table footer. Use TFOOT to duplicate footers when breaking a table across page boundaries, or for static headers when body sections are rendered in a scrolling panel.
The table footer is optional; if given, only one footer is allowed. The TFOOT element is valid only within a table; you must use a TABLE element before using this element. The end-tag is optional.
Example
<TABLE> <TBODY> <TR> ... </TR> <TFOOT> <TR> ... </TR> </TABLE>