forked from SamiSelx/AlanTuring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (45 loc) · 1.6 KB
/
index.html
File metadata and controls
51 lines (45 loc) · 1.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Relie le fichier CSS -->
<link rel="stylesheet" href="style.css">
<title>Alan Turing</title>
</head>
<body style="display: flex;">
<!----------Navigation---------->
<header>
<div class="icon-nav"></div>
<ul class="header-list">
<li style="background-color: #1F1F1F;"><a href="./index.html">Accueil</a></li>
<li><a href="./introduction.html">Introduction</a></li>
<li><a href="./biographie.html">Biographie</a></li>
<li class="list">
<a href="./oeuvres.html">Œuvres</a>
<ul class="mini-list">
<li>
<a href="./oeuvres.html#ch1">► Chaptire 1</a>
</li>
<li><a href="./oeuvres.html#ch2">► Chapitre 2</a></li>
</ul>
</li>
<li><a href="./source.html">Sources</a></li>
</ul>
</header>
<!----------Navigation---------->
<main class="main-accueil">
<img class="accueil-img" src="./imgs/alan_background.jpg" alt="">
<section class="accueil">
<div>
<p>Alan Turing the father of modern computer science and artificial intelligence</p>
</div>
</section>
</main>
</body>
<script>
document.querySelector(".icon-nav").addEventListener("click",()=>{
document.querySelector(".header-list").classList.toggle("clicked")
})
</script>
</html>