Au sein d'un tableau, la partie inférieure constitue le pied du tableau. Elle peut être composée de plusieurs lignes et cellules.

La commande <tfoot> marque le début du pied d'un tableau.
La commande </tfoot> marque la fin du pied d'un tableau.
<html>
  <head>
    <title>Un titre pertinent</title>
    <meta name="Description" content="...">
    <meta http-equiv="Date" content="01/01/2000">
    ...
  </head>
  <body>
    <table>
      <thead>
        ...
      </thead>
      <tbody>
        ...
      </tbody>
      <tfoot>
        ...
      </tfoot>
    </table>
    ...
    Diverses commandes HTML
    ...
  </body>
</html>
<table> <thead>
  Tête  
  Corps  
  PIED  
</thead> </table>
<tbody> </tbody>
<tfoot> </tfoot>
La structure / La tête / Le corps