-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Ten Second Math</title>
<!-- css links -->
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<!-- js -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/application.js"></script>
</head>
<body>
<div class="wrapper">
<div class="container">
<img id="bitcoin" src="http://media.zenfs.com/en-US/video/video.pd2upload.com/video.yahoofinance.com@8dfea102-b1a8-362e-9e14-5554f85eab4c_FULL.jpg">
<button id="reset">Reset</button>
<p id="countdown">10 seconds left</p>
<h1 id="question">15 + 20</h1>
<input id="input-answer" placeholder="answer">
<select class="form-control">
<option>10</option>
<option>20</option>
<option>30</option>
<option>40</option>
<option>50</option>
<option>60</option>
<option>70</option>
<option>80</option>
<option>90</option>
<option>100</option>
</select>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox1" value="option1" checked="true"> +
</label>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox2" value="option2"> -
</label>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox3" value="option3"> x
</label>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox4" value="option4"> /
</label>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox5" value="option5"> sqrd
</label>
<label class="checkbox-inline">
<input type="checkbox" id="inlineCheckbox6" value="option6"> sqrt
</label>
</div>
</div>
</body>
</html>