forked from SamiSelx/AlanTuring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource.html
More file actions
77 lines (69 loc) · 2.77 KB
/
source.html
File metadata and controls
77 lines (69 loc) · 2.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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><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 style="background-color: #1F1F1F;" > <a href="./source.html">Sources</a></li>
</ul>
</header>
<!----------Navigation---------->
<main class="Sources">
<section>
<header>
<h1> Réference </h1>
</header>
<ul>
<li><p> Article de <a target="_blank" href="https://fr.wikipedia.org/wiki/Alan_Turing#">wikipedia</a> Realisé le 25/03/2019 </p></li>
<li><p> Artticle de <a target="_blank" href="https://lejournal.cnrs.fr/articles/alan-turing-genie-au-destin-brise">le journal</a> Réalisé le 12/12/2020</p></li>
<li><p> Artticle de <a target ="_blank" href="https://www.bibmath.net/bios/index.php?action=affiche&quoi=turing"> bibmath </a> Réalisé le 07/09/2022</p></li>
</ul>
<h3>les noms des etudiants </h3>
<ol>
<table border ="1">
<tr>
<th> SAMI SELLAL </th>
<th> chaa Nada </th>
<th>kedjour yacine</th>
</tr>
<tr>
<td> 222231516202 </td>
<td> 222231485102 </td>
<td> 222231521218 </td>
</tr>
<tr>
<td> Groupe 01 </td>
<td> Groupe 03 </td>
<td> Groupe 02 </td>
</tr>
</table>
</ol>
</section>
</main>
</body>
<script>
document.querySelector(".icon-nav").addEventListener("click", () => {
document.querySelector(".header-list").classList.toggle("clicked")
})
</script>
</html>