-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.35 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simon Game</title>
<link rel="stylesheet" href="src/index.css">
</head>
<body>
<div class="container">
<div class="board">
<div>
<div class="buttons color-green" id="green"></div>
<div class="buttons color-red" id="red"></div>
</div>
<div>
<div class="buttons color-yellow" id="yellow"></div>
<div class="buttons color-blue" id="blue"></div>
</div>
<div class="center">
<h1>Simon</h1>
<div class="controls">
<div class="result">
<div id="level">--</div>
</div>
<div id="start"><button></button></div>
<div id="strict"><button></button></div>
<div class="titles">
<span>Level</span>
<span>Start</span>
<span>Strict</span>
</div>
<div class="switcher">
<span class="off">OFF</span>
<div class="box">
<div class="switch"></div>
</div>
<span class="on">ON</span>
</div>
</div>
</div>
</div>
</div>
<script src="src/index.js"></script>
</body>
</html>