forked from viditvarshney/Reaction-Timer.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.4 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
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reaction-timer Intro</title>
<style>
body {
text-align: center;
background-color: lightgray;
font-size: 25px;
}
a#play_game {
text-decoration: none;
border: 2px solid darkgray;
padding: 20px;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
border-radius: 10px;
}
a#play_game:hover {
background-color: blue;
color: white;
}
div {
margin-top: 300px;
min-height: 791px;
min-width: 691px;
}
</style>
</head>
<body>
<div>
<a href="https://github.com/viditvarshney/Reaction-Timer-"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<h1>Test Your Reactions!</h1>
<h2>Click On The Boxes And Circles As Quickly As You Can! </h2>
<h3>Your best time and the current time is displayed before</h3>
<a id="play_game" href="/Reaction-Timer/index.html">Play Game!</a>
</div>
</body>
</html>