TFOOT
Creating the table's footer.
Example
TFOOT
TROW
TCELL
PRINT "Table footer cell 1"
TCELL CLOSE
TCELL
PRINT "Table footer cell 2"
TCELL CLOSE
TROW CLOSE
TFOOT CLOSE
Output
<tfoot>
<tr>
<td>
<span>Table footer cell 1</span>
</td>
<td>
<span>Table footer cell 2</span>
</td>
</tr>
</tfoot>