<tbody> Tag Syntax

<body>
   ... flow content expected ...
   <table>
      <thead>
         <tr>
            <th>...</th>
            ...
         </tr>
      </thead>
      <tbody>
         <tr>
            <td>...</td>
            ...
         </tr>
      </tbody>
      <tfoot>
         <tr>
            <td>...</td>
            ...
         </tr>
      </tfoot>
   </table>
</body>
Rules for coding the HTML tbody element
Child Elements of the <tbody> tag
<> tag(s)
A <tr> tag for each table row with <td> tag(s) for each table cell in the table body.