-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClick Index.html
More file actions
36 lines (31 loc) · 1 KB
/
Click Index.html
File metadata and controls
36 lines (31 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<title>Click Game</title>
<link rel="icon" href="https://cdn4.iconfinder.com/data/icons/fevzicons-1/100/noun_183251-512.png">
<link rel="stylesheet" href="Click Style.css">
</head>
<body>
<center>
<h1>Select how long you want to be timed, click Start to begin, then click as many times as you possibly can.</h1>
<button id="clickButton">Start</button>
<select id="timerSelect">
<option value="invalid" disabled selected>- Timer -</option>
<option value="10">10 seconds</option>
<option value="20">20 seconds</option>
<option value="30">30 seconds</option>
</select>
<p id="counterDisplay"></p>
<table id="scoreBoard">
<tr>SCOREBOARD</tr>
<ol>
</ol>
<!-- <tr>TIME</tr>
<ol>
</ol> -->
</table>
</center>
<script src="Click.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</body>
</html>