-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (31 loc) · 991 Bytes
/
index.html
File metadata and controls
47 lines (31 loc) · 991 Bytes
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 >
<head>
<meta charset="UTF-8">
<title>Simon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="board">
<div class="colored-buttons">
<div id="id1" class="section red"></div>
<div id="id2" class="section blue"></div>
<div id="id3" class="section green"></div>
<div id="id4" class="section yellow"></div>
</div>
<div class="settings">
<div class="control">
<h2>Matt Says!</h2>
<div id="display"><span id="count">00</span></div>
<div class="buttons">
<button id="start">Start</button>
<button id="strict">Strict Off</button>
</div>
<div>
</div>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>