'tfoot' Example
<html> <head> <title>tfoot, thead element examples</title> </head> <body> <table width="500" border="8" cellspacing="5" cellpadding="5" align="center"> <thead style="color:blue" align="center"> <td>in the thead rows group.</td> <td>in the thead rows group.</td> <td>in the thead rows group.</td> </thead> <tbody> <tr> <td>in the tbody rows group.</td> <td>in the tbody rows group.</td> <td>in the tbody rows group.</td> </tr> <tr> <td>in the tbody rows group.</td> <td>in the tbody rows group.</td> <td>in the tbody rows group.</td> </tr> </tbody> <tfoot style="color:red" align="right"> <td>in the tfoot rows group.</td> <td>in the tfoot rows group.</td> <td>in the tfoot rows group.</td> </tfoot> </table> </body> </html>