-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tableau des utilisateurs</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 p-6">
<div class="container mx-auto">
<table id="userTable" class="min-w-full bg-white border border-gray-200">
<thead>
<tr class="bg-gray-200 text-gray-600 uppercase text-sm leading-normal">
<th class="py-3 px-6 text-left">Nom d'utilisateurs</th>
<th class="py-3 px-6 text-left">Genre</th>
<th class="py-3 px-6 text-left">Nom</th>
<th class="py-3 px-6 text-left">Photo</th>
<th class="py-3 px-6 text-left">Ville</th>
<th class="py-3 px-6 text-left">Pays</th>
</tr>
</thead>
<tbody class="text-gray-600 text-sm font-light">
</tbody>
</table>
</div>
<script src="script.js"></script>
</body>
</html>