-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (51 loc) · 3.19 KB
/
index.html
File metadata and controls
89 lines (51 loc) · 3.19 KB
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
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html lang = "en">
<head>
<title>Reaction Time Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<div class="navbar navbar-expand-lg bg-light">
<div class="navbar-brand">
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a class="dropdown-btn" href="#">About
<i class="fa fa-caret-down"></i>
</a>
<div class="dropdown-container">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
<a href="#">Services</a>
<a href="#">Clients</a>
<a href="https://gitter.im/Reaction-Timer/Lobby">Contact</a>
</div>
<div id="main">
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
</div>
<a id="Logo" class="nav-link" href="">Reaction-Timer</a>
</div>
<ul class="navbar-nav">
<li id="contact" class="nav-item">
<a href="https://gitter.im/Reaction-Timer/Lobby"><i class="fa fa-fw fa-envelope"></i><span id="largerText">Contact</span></a>
<li class="nav-item">
<a class="nav-link" href="https://github.com/viditvarshney"><img id="github" src="github.JPG"></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.facebook.com/vidit.varshney222"><img src="Capture.JPG"><span id="profile">Profile</span></a>
</li>
</ul>
</div>
</div>
<p class="bold">Your Time: <span id="timeTaken"></span></p>
<p class="bold">Your Best Time: <span id="best"></span></p>
<div id="shape"></div>
<canvas id="canvas1" width="500" height="900">
<script type="text/javascript" src="script.js"></script>
</canvas>
</body>
</html>