-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 869 Bytes
/
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
<html>
<header>
<p>Math Quiz</p>
</header>
<body>
<div class="container-fluid text-center">
<div id="display" class="well col-xs-6">
<div id="try-screen">
<p id="try">Try Again</p>
<p id="final-score">Your score was 0.</p>
<button id="restart-button">Restart</button>
</div>
<div id="working-screen">
<div id="progressbar"></div>
<p id="expression">7 + 7</p>
<p id="result">= 14</p>
<div id="controls">
<button id="tick"><i class="fa fa-check"></i></button>
<button id="cross"><i class="fa fa-close"></i></button>
</div>
</div> <!-- end of working screen -->
</div>
<div id="score">
<p>Score: </p>
</div>
</div> <!-- end of fluid container -->
</body>
</html>