<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
</head>
<body>
<table width="400" border="1">
<caption>Papier d'évaluation</caption>
<thead>
<tr>
<th>Etudiant</th>
<th>1ere exam</th>
<th>2eme exam</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Johnson</td>
<td>75</td>
<td>65</td>
</tr>
<tr>
<td>Mary Nicolson</td>
<td>55</td>
<td>80</td>
</tr>
<tr>
<td>Max Thomson</td>
<td>60</td>
<td>47</td>
</tr>
</tbody>
</table>
</body>
</html>