-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
35 lines (31 loc) · 1.65 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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"/>
<title>30 second arithmetic challenge</title>
<!-- jquery -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/thing.js"></script>
<link rel="stylesheet" href="css/thing.css"></link>
</head>
<body>
<header>
<h1>30 second arithmetic challenge</h1>
<p class="instructions">
Start with the number in the first box and follow the instructions until you get to the end. Enter your answer and press enter (or click on the timer).
</p>
</header>
<div id="options">
<p><label><input type="checkbox" id="focus_toggle"> Focus start number instead of input box</label></p>
<p><label>Time limit:</label> <input type="range" min="1" max="27" value="6" id="time_limit"></label> <span id="time_limit-display"></span></p>
<p><button id="reset">Reset data</button></p>
</div>
<ul id="challenges"></ul>
<div class="new-challenge-buttons">
<button class="new-challenge" data-difficulty="easy"><span class="start">An easy one</span><span class="another">Another easy one</span></button>
<button class="new-challenge" data-difficulty="medium"><span class="start">A medium one</span><span class="another">Another medium one</span></button>
<button class="new-challenge" data-difficulty="hard"><span class="start">A hard one</span><span class="another">Another hard one</span></button>
</div>
</body>
</html>