-
Notifications
You must be signed in to change notification settings - Fork 0
/
add.html
57 lines (54 loc) · 1.53 KB
/
add.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
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="add.js" type="text/javascript">
</script>
<link rel="stylesheet" href="style.css">
<title>Addition Practice</title>
</head>
<body onload="formLoad()">
<h1>Addition Practice</h1>
<div>
Level:
<select id="selectLevel" onchange="levelChange()">
<option value="10">Moderate</option>
<option value="100">Hard</option>
<option value="1000">Challanging</option>
<option value="10000">Cyptic</option>
</select>
<label id="lblTimeLeft"></label>
</div>
<hr />
<div>
What is <label id="lblFirst"></label> + <label id="lblSecond"></label> = ?
</div>
<div>
Answer: <input type="text" value="" id="txtAnswer" autocomplete="off"/>
</div>
<hr />
<div>
<button onclick="submit()" type="button" id="btnSubmit">Submit</button>
<button onclick="skip()" type="button" id="btnSkip">Skip Question</button>
<button input type="button" value="Reload Page" onClick="document.location.reload(true)"> Reset</button>
</div>
<hr />
<div>
Number Correct: <label id="lblCorrect"></label>
</div>
<div>
Number Incorrect: <label id="lblIncorrect"></label>
</div>
<div>
<label id="lblwrong"></label>
</div>
<div>
<label id="lblMsg"></label>
</div>
<hr>
<a href="divide.html">Division Practice</a>
<a href="subtract.html">Subtraction Practice</a>
<a href="multiply.html">Multiplication Practice</a>
</hr>
</body>
</html>