-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsgame.html
66 lines (60 loc) · 2.45 KB
/
jsgame.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
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
<html>
<head>
<title>Let's Compete!</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id = "screen1">
<div id = "question">How many players?</div><br>
<select id="howManyPlayers">
<option value="">Select One</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
</div>
<div id = "screen2a">
<div class = "card">
<div class = "header">TARGET</div>
<div class = "data" id = "instructions"></div>
</div>
<div class = "card">
<div class = "header">BEST TIME</div>
<div class = "data" id = "besttime"></div>
</div>
<div class = "card">
<div class = "header">CURRENT TIME</div>
<div class = "data" id = "reactiontime"></div>
</div>
<div class = "card">
<div class = "header">AVERAGE TIME</div>
<div class = "data" id = "averagetime"></div>
</div>
</div>
<div id = "screen2b">
<div class = "shape" id = "answer"></div>
<div class = "shape" id = "shape1"></div>
<div class = "shape" id = "shape2"></div>
<div class = "shape" id = "shape3"></div>
<div class = "shape" id = "shape4"></div>
<div class = "shape" id = "shape5"></div>
<div class = "shape" id = "shape6"></div>
<div class = "shape" id = "shape7"></div>
<div class = "shape" id = "shape8"></div>
<div class = "shape" id = "shape9"></div>
<div class = "shape" id = "shape10"></div>
</div>
<div id = "screen3">
<table id = "results">
</table>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>