Skip to content

Instantly share code, notes, and snippets.

@billyjov
Last active May 5, 2020 13:21
Show Gist options
  • Save billyjov/6e1d24dd3d9f0c0b39831c4e8b672660 to your computer and use it in GitHub Desktop.
Save billyjov/6e1d24dd3d9f0c0b39831c4e8b672660 to your computer and use it in GitHub Desktop.
Code exemple de la vidéo sur le HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liste d'employés</title>
</head>
<body>
<h1>Informations employés</h1>
<hr>
<p>Nombre d'employés: 3</p>
<table border="1px">
<thead>
<tr>
<th>Nom</th>
<th>Prenom</th>
<th>Age</th>
<th>Date arrivé</th>
</tr>
</thead>
<tbody>
<tr>
<td>Un Nom</td>
<td>Un Prenom</td>
<td>Un Age</td>
<td>Une Date</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>12</td>
<td>12/01/2020</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>12</td>
<td>12/01/2020</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment