-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.22 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Reaction Time Game</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.css">
<link rel="stylesheet" type="text/css" href="styles/styles.css">
</head>
<body>
<div id="content">
<div id="header" role="heading">
<h1>Reaction Time Game</h1>
<p>Click on the shapes as fast as you can!<p>
</div>
<div id="times">
<div class="times" id="lastTime">Last: <span id="timeTaken"></span></div>
<div class="times">Best: <span id="timeBest"></span></div>
<div class="times" id="worstTime">Worst: <span id="timeWorst"></span></div>
</div>
<div id="resetButton" onClick="window.location.reload()">
<h3>Restart Game</h3>
</div>
<div id="shape"></div>
</div>
<div id="footer">
<div id="copyright">© Larry Tooley</div>
</div>
<!-- Javascript -->
<script type="text/javascript" src="scripts/scripts.js"></script>
</body>
</html>