forked from Raksha25/ReactionTester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 773 Bytes
/
index.html
File metadata and controls
28 lines (24 loc) · 773 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Reaction Tester</title>
<link href='https://fonts.googleapis.com/css?family=Annie Use Your Telescope' rel='stylesheet'>
<link rel="stylesheet" href="testReaction.css">
</head>
<body>
<div id="title">
<h1>Test Your Reaction</h1>
<p>Click on the shapes asap!</p>
</div>
<div class="container">
<a class="btn btn-1" id="play">Start</a>
<a class="btn btn-2" id="pause">Pause</a>
<a class="btn btn-3" id="restart">Restart</a>
</div>
<div id="text">
<h3>Time taken: <span id="timerTime"></span></h3>
</div>
<div id="shape"> </div>
<script type="text/javascript" src="testReaction.js"></script>
</body>
</html>