-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleaderboardpro.html
56 lines (53 loc) · 1.43 KB
/
leaderboardpro.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leaderboard des professeurs</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<img src="Logo/LOGO.png" alt="Logo">
<div class="bandeau">
<a class="btn" href="accueil.html">Retour à l'accueuil</a>
</div>
</div>
</header>
<main>
<h1 class="h1-barre">Leaderboard des professeurs</h1>
<table>
<tr>
<th>Clasement</th>
<th>Professeurs les plus recherchés</th>
</tr>
<tr>
<td>1</td>
<td>Monsieur Després</td>
</tr>
<tr>
<td>2</td>
<td>Mme Otz</td>
</tr>
<tr>
<td>3</td>
<td>Monsieur Mivelaz</td>
</tr>
<tr>
<td>4</td>
<td>Monsieur Posse</td>
</tr>
<tr>
<td>5</td>
<td>Monsieur Bridel </td>
</tr>
</table>
</main>
<footer>
<div class="contacts">
<p>Bug, problème ou curiosité ? <a href="contacts.html">Contactez-nous</a></p>
</div>
</footer>
</body>
</html>