<!DOCTYPE html>
<html>
 <head>
     <meta charset="UTF-8" />
     <meta name="author" content="Manuele" />
    <title> Exemple CSS</title>
    <link rel="stylesheet" href="css/selecteurs.css" />
    <link rel="stylesheet" href="css/tableaux.css" />
 </head>
<body>
    <h1>  Tableaux CSS </h1>
    <table class="type1">
          <caption> Tableau de type1 </caption>
         <thead>
              <tr> <th> Colonne1 </th> <th> Colonne 2</th> </tr>
         </thead>
         <tbody>
              <tr> <td> data 1 </td> <td> data 2 </td> </tr>
              <tr> <td> data 3 </td> <td> data 4 </td> </tr>
         </tbody>
    </table>
    
    <br />
    
    <table class="type2">
        <caption> Tableau de type2 </caption>
         <thead>
              <tr> <th> Colonne1 </th> <th> Colonne 2</th> </tr>
         </thead>
         <tbody>
              <tr> <td> data 1 </td> <td> data 2 </td> </tr>
              <tr> <td> data 3 </td> <td> data 4 </td> </tr>
              <tr> <td rowspan="2"> data5</td> <td> data6</td> </tr>
              <tr> <td> </td>
         </tbody>
    </table>
    
</body>
</html>