-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
48 lines (45 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simon Game</title>
<meta name="viewport" content="initial-scale=1">
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<main>
<section>
<div class="green" id="0"></div>
<div class="red" id="1"></div>
<div class="yellow" id="2"></div>
<div class="blue" id="3"></div>
</section>
<div class="center">
<h1>simon<span>®</span></h1>
<div class="count">
<h2>- -</h2>
<h3>COUNT</h3></div>
<div class="start">
<button type="button" id="start"></button>
<h3>START</h3></div>
<div class="strict">
<div class="pilot-lamp"></div>
<button type="button" class="shadow" id="strict"></button>
<h3>STRICT</h3></div>
<div class="power">
<h3 class="off-text">OFF</h3>
<div id="switch">
<div></div>
</div>
<h3 class="on-text">ON</h3></div>
</div>
</main>
<audio src="https://s3.amazonaws.com/freecodecamp/simonSound4.mp3"></audio>
<audio src="https://s3.amazonaws.com/freecodecamp/simonSound3.mp3"></audio>
<audio src="https://s3.amazonaws.com/freecodecamp/simonSound2.mp3"></audio>
<audio src="https://s3.amazonaws.com/freecodecamp/simonSound1.mp3"></audio>
<script src="jquery.min.js"></script>
<script src="main.js"></script>
</body>
</html>