-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (41 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/product-sans.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/content.css">
<title>Web History</title>
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
</head>
<body>
<header>
<div class="half-width full-height dflex" style="transform: translate(0%,24%);">
<img src="img/favicon.png" alt="Icone du site" id="favicon">
<div id="title-container">
<h1 class="color">Histoire du Web</h1>
<h3 class="color">Web History</h3>
</div>
</div>
<br class="small">
<div class="half-width full-height" style="">
<!-- button class is not needed because it's automatically added on
page load but we add it because it improves look on loading-->
<div class="button" target_page="pages/introduction.html">
<span>Introduction</span>
</div>
<div class="button" target_page="pages/sommaire.html">
<span>Sommaire</span>
</div>
<div class="button" target_page="pages/informations.html">
<span>Informations</span>
</div>
</div>
</header>
<div class="full-height" id="page-content">
<!-- div dans lequel va le contenu des pages (affichées par les boutons) -->
</div>
<script src="js/index.js"></script>
</body>
</html>