-
Notifications
You must be signed in to change notification settings - Fork 0
/
reaction-time-test.html
78 lines (58 loc) · 2.36 KB
/
reaction-time-test.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
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang='en'>
<!-- HEAD -->
<head>
<title>Reaction Time Trainer</title>
<meta name='description' content='The purpose of this Reaction Time Trainer is to provide a reaction Time Test that you can use to help train your reaction time.'/>
<meta name='keywords' content='reaction time test, reaction time trainer, reaction time game, reaction time, reaction, time, test, game, trainer'/>
<meta property='og:site_name' content='Executive Functioning Trainer'/>
<meta property='og:type' content='game'/>
<meta property='og:title' content='Reaction Time Trainer'/>
<link rel='stylesheet' href='reaction-time-test/reaction-time-test.css'>
<link rel="icon" href="favicon.ico">
<link rel='prefetch' href='reaction-time-test/images/greenCircle.png'>
<link rel='prefetch' href='reaction-time-test/images/noCircle.png'>
<link rel='prefetch' href='reaction-time-test/images/pauseCircle.png'>
<link rel='prefetch' href='reaction-time-test/images/redCircle.png'>
</head>
<body>
<!-- HEADER BANNER -->
<div class='headerBannerHolder'>
<a href=''
class='headerRightElement'
id='home'>
HOME
</a>
<a href='ourMission'
class='headerRightElement'
id='ourMission'>
OUR MISSION
</a>
<a href='logIn'
class='headerRightElement'
id='logIn'>
LOG IN
</a>
<a href='getStarted'
class='headerRightElement'
id='getStarted'>
GET STARTED
</a>
</div>
<h1 class='header'>
REACTION TIME TRAINER
</h1>
<!-- REACT INSERTS CODE HERE -->
<div id='game'></div>
<!-- FOOTER BANNER -->>
<div id='footerHolder'>
<a id='homeFooter' href=''class='headerRightElement'>HOME</a>
<a id='contactFooter' href='contact' class='headerRightElement'>CONTACT</a>
</div>
<!-- REACT SCRIPTS -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@17/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js" crossorigin></script>
<script type='module' src='reaction-time-test/reactionTimeContainer.js'></script>
</body>
</html>