Un tableau est constitué d'un corps formé par des cellules et constituant la partie recueillant les données.

La commande <tbody> marque le début du corps d'un tableau.
La commande </tbody> marque la fin du corps 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>
      ...
    </table>
    ...
    Diverses commandes HTML
    ...
  </body>
</html>
<table> <thead>
  Tête  
  CORPS  
  Pied  
</thead> </table>
<tbody> </tbody>
<tfoot> </tfoot>
La structure / La tête / Le pied