-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simon Sez</title>
<link href="https://fonts.googleapis.com/css?family=Fredoka+One" rel="stylesheet">
<link rel="stylesheet" href="./dist/styles.css">
</head>
<body>
<div class="game">
<h1>Simon Sez</h1>
<h2 id="stage">Stage: --</h2>
<div id="simon-buttons">
<div class="button-row">
<div id="btn-green" class="simon-button unclickable"></div>
<div id="btn-red" class="simon-button unclickable"></div>
</div>
<div class="button-row">
<div id="btn-yellow" class="simon-button unclickable"></div>
<div id="btn-blue" class="simon-button unclickable"></div>
</div>
</div>
<button id="btn-start" type="button" name="start">Start</button>
<div id="strict">
Strict Mode:
<div class="onoffswitch">
<input type="checkbox" name="strict" class="onoffswitch-checkbox" id="myonoffswitch">
<label class="onoffswitch-label" for="myonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
</div>
<script src="./dist/bundle.js"></script>
</body>
</html>