-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.2 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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>L'ordinateur</title>
<link href="css/global.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<script>window.addEventListener('scroll', () => {document.body.style.setProperty('--scroll',window.pageYOffset / (document.body.offsetHeight - window.innerHeight));}, false);</script>
<meta charset="utf-8">
</head>
<body>
<header>
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="motherboard.html">Carte mère</a></li>
<li>RAM</li>
<li>Disque dur</li>
<li>Processeur</li>
</ul>
</header>
<h1 class="title">L'ordinateur</h1>
<p class="scroll-arrow"> ̌ </p>
<img class="pc" src="img/pc.png" alt="Image PC">
<div class="parts">
<p class="left motherboard">
<img src="img/motherboard.png" alt="Catre mère">
Carte mère
</p>
<p class="right ram">
Mémoire vive
<img src="img/ram.png" alt="RAM">
</p>
<p class="left hdd">
<img src="img/hdd.png" alt="Disque Dur">
Disque dur
</p>
<p class="right cpu">
Processeur
<img src="img/cpu.png" alt="Processeur">
</p>
</div>
<footer>Site crée par </footer>
</body>
</html>