L1 Info : Informatique et Document, HTML
 
◃  Ch. 6 Les blocs structurés  ▹
 

Les tableaux (2)

  • Exemple simple : un tableau 3 x 3

<table border="1">
<tr><th>Prénom</th>   <th>Nom</th>     <th>Bureau</th></tr>
<tr><td>Dominique</td><td>Fournier</td><td>ST-B114</td></tr>
<tr>
     <td>Véronique</td>
     <td>Jay</td>
     <td>ST-G004</td>
</tr>
<tr><td>    Jean-Luc</td><td>Ponty  </td><td>   ST-B110   </td>  </tr>
</table>
PrénomNomBureau
DominiqueFournierST-B114
VéroniqueJayST-G004
Jean-LucPontyST-B110