-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 1.71 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
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
57
58
59
60
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Générateur de phrase aléatoire" />
<link rel="stylesheet" href="/reset.css" />
<link rel="stylesheet" href="/styles.css" />
<title>Générateur de phrase aléatoire</title>
</head>
<body>
<!-- Loader -->
<div id="loader" class="loader"></div>
<!-- Loader -->
<!-- Header -->
<header>
<h1>Random quotes</h1>
</header>
<!-- Header -->
<!-- Main -->
<main id="main">
<div class="container">
<!-- Quote -->
<div id="quote-box">
<p class="quote">You can do anything but not everything</p>
<p class="source">David Allen</p>
<span class="citation">Making It All Work</span>
<span class="year">2009</span>
<span class="tags"></span>
</div>
<!-- BTN -->
<button id="loadQuote">Show another quote</button>
</div>
</main>
<!-- Main -->
<!-- Footer -->
<footer id="footer">
<div class="footer-container">
<div class="line-left line"></div>
<div class="line-right line"></div>
<ul>
<li><a href="#">Mentions légales</a></li>
<li><a href="#">Politique de confidentialité</a></li>
<li><a href="#">CGV</a></li>
<li><a href="#">CGU</a></li>
<li><a href="#">Vos informations personnelles</a></li>
</ul>
</div>
</footer>
<!-- Footer -->
<!-- Scripts -->
<script src="./index.js"></script>
<!-- Scripts -->
</body>
</html>