-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (57 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
79 lines (57 loc) · 1.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simon Game</title>
<!-- CSS -->
<link rel="stylesheet" href="css/app.css">
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono" rel="stylesheet">
<!-- JAVASCRIPT -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<audio id="greenAudio">
<source src="audio/simonSound1.mp3" type="audio/mpeg">
</audio>
<audio id="redAudio">
<source src="audio/simonSound2.mp3" type="audio/mpeg">
</audio>
<audio id="yellowAudio">
<source src="audio/simonSound3.mp3" type="audio/mpeg">
</audio>
<audio id="blueAudio">
<source src="audio/simonSound4.mp3" type="audio/mpeg">
</audio>
<audio id="wrong">
<source src="audio/wrong.mp3" type="audio/mpeg">
</audio>
<div class="container">
<header>
<div class="row">
<h1>Simon Game</h1>
<p>code by <a href="http://www.paulmaxwell.co.uk" target="_blank">Paul Maxwell</a></p>
</div>
</header>
<div class="message"><h2>Congratulations, you won!</h2></div>
<section>
<div class="row first">
<div id="green" class="col"> </div>
<div id="red" class="col"> </div>
</div>
<div class="row second">
<div id="yellow" class="col"> </div>
<div id="blue" class="col"> </div>
</div>
<div class="row controls">
<div><p id="counter">00</p></div>
<div class="ctrl-btns">
<p id="start">start</p>
<p id="strict">strict: OFF</p>
</div>
</div>
</section>
</div><!-- end container -->
</body>
</html>