-
Notifications
You must be signed in to change notification settings - Fork 3
/
presidents.html
49 lines (42 loc) · 1.51 KB
/
presidents.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Polit'IF</title>
<link rel="icon" type="image/svg+xml" href="img/logo.svg" />
<link rel="stylesheet" href="styles/reset.css" />
<link rel="stylesheet" href="styles/typography.css" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/presidents.css" />
</head>
<body>
<header>
<div class="brand">
<a href="index.html" class="logo" title="Retourner à l'accueil">
<img src="img/logo.svg" alt="" />
<h1>Polit’IF</h1>
</a>
<p class="h3">Le moteur de recherche de la politique française</p>
</div>
</header>
<div class="sheet timeline-container">
<h2 class="timeline-title">Présidents français depuis 1947</h2>
<ul class="timeline" id="timeline"></ul>
<div class="timeline-spinner-container" id="spinner">
<svg class="timeline-spinner" viewBox="0 0 50 50">
<circle class="path" cx="25" cy="25" r="20" fill="none" stroke-width="5"></circle>
</svg>
</div>
</div>
<footer>
<div class="drapeau-francais">
<span class="sr-only">Drapeau français</span>
</div>
</footer>
<script src="scripts/Slots.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/requetes.js"></script>
<script src="scripts/presidents.js"></script>
</body>
</html>