-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="content" content="width=device-width, initial-scale=1.0, shrink-to-fit=yes">
<link rel="stylesheet" type="text/css" href="index.css">
<title>PROJECT 1</title>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="headerText">
<h3>HOW FAST IS YOUR REACTION TIME?</h3>
</div>
<div id="instructions">
<p id="results"><strong>INSTRUCTIONS:</strong> You are to click on the shapes as fast as you can as soon as they appear!<br />
</div>
<div id="yourTime">
<b>YOUR TIME:</b><span id="boom"></span>
</div>
<div id="hScore">
<b>HIGH SCORE:</b><span id="hscore"></span>
</div>
<div id="credits">
<p><b>© Coded by Ife Olulesi 2019</b></p>
</div>
</div>
<div id="box1"></div>
<script type="text/javascript" src="index.js"></script>
</div>
</body>
</html>