Code de ce tableau de 4 colonnes et 3 lignes

<table>

<caption>Titre du tableau</caption>

<thead>

<tr>

<th scope="col">Colonne 1</th>

<th scope="col">Colonne 2</th>

<th scope="col">Colonne 3</th>

<th scope="col">Colonne 4</th>

</tr>

</thead>



<tr>

<th scope="row"> Ligne 1-1</th>

<td>Ligne 1-2</td>

<td>Ligne 1-3</td>

<td>Ligne 1-4</td>

</tr>



<tr>

<th scope="row"> Ligne 2-1</th>

<td>Ligne 2-2</td>

<td>Ligne 2-3</td>

<td>Ligne 2-4</td>

</tr>



<tr>

<th scope="row"> Ligne 3-1</th>

<td>Ligne 3-2</td>

<td>Ligne 3-3</td>

<td>Ligne 3-4</td>

</tr>

</table>