<table id="extable">
	
   <caption>Skieur du groupe</caption>
   
   <thead>
   <tr>
       <th>Nom</th>
       <th>Âge</th>
       <th>Niveau</th>
   </tr>
   </thead>
   
   <tfoot>
   <tr>
       <th>Nom</th>
       <th>Âge</th>
       <th>Niveau</th>
   </tr>
   </tfoot>
   
    <tbody>
   <tr>
       <td>Yohan</td>
       <td>8 ans</td>
       <td>moyen</td>
   </tr>
   <tr>
       <td>Clara</td>
       <td>5 ans</td>
       <td>débutante</td>
   </tr>
      <tr>
       <td>pierre</td>
       <td>7 ans</td>
       <td>débutant</td>
   </tr>
      <tr>
       <td>josé</td>
       <td>8 ans</td>
       <td rowspan="2">moyen</td>
   </tr>
      <tr>
       <td>bob</td>
       <td>6 ans</td>
       
   </tr>
      <tr>
       <td>céline</td>
       <td>5 ans</td>
       <td>débutante</td>
   </tr>
   </tbody>
   
</table>