-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.9 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
<!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">
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Road+Rage&display=swap" rel="stylesheet">
<title>IPSSI JS - SUPER SIMON</title>
</head>
<body>
<div class="header">
<h1 class="title"> SUPER SIMON </h1>
<button id="open-rules" class="rules-button"> ? </button>
</div>
<div id="rules">
<div id="rules-text">
<button id="close" class="exit-button" href="#">X</button>
<h1>But du jeu :</h1>
<ul class="ul-rule">Répéter une séquence de lumières de plus en plus longue !</ul>
<li>Une touche s'allume et émet un bip : appuyez sur cette touche.</li>
<li>La même touche s'allume et bip, puis Super Simon ajoute une nouvelle touche : appuyez sur ces deux
touches l'une après l'autre.</li>
<li class="li-rule">... et ainsi de suite jusqu'à ce que vous vous trompiez, ou que vous battiez Super
Simon !</li>
</div>
</div>
<div class="buttons">
<button id="start" class="play-button"> Jouer </button>
<button id="reset" class="reset-button"> Reset </button>
</div>
<div id="level"></div>
<div class="level">
<h3> Niveau </h3>
</div>
<div class="playground">
<div id="1" class="color green"></div>
<div id="2" class="color red"></div>
</div>
<div class="playground">
<div id="3" class="color yellow"></div>
<div id="4" class="color blue"></div>
</div>
<script src="./app.js"></script>
</body>
</html>