-
Notifications
You must be signed in to change notification settings - Fork 0
/
mathpractice.php
35 lines (29 loc) · 1 KB
/
mathpractice.php
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
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script src="mathpractice.js"></script>
<style>
</style>
</head>
<body>
<label for="max_number">Min Number</label>
<input type="text" id="min_number" value="4" />
<br/>
<label for="max_number">Max Number</label>
<input type="text" id="max_number" value="12" />
<br/>
<label for="allow_perfect_squares" title="If NOT checked, perfect squares (5x5=25, 64÷8=8) will not be asked.">Squares</label>
<input type="checkbox" id="allow_perfect_squares" />
<div id="question_area">
<span id="number_1"></span>
<select id="operation_type">
<option value="multiply">X</option>
<option value="divide">÷</option>
</select>
<span id="number_2"></span>
</div>
<div id="answer"></div>
<input type="text" id="response_field" placeholder="Enter your answer." />
<input type="button" id="check_answer" value="Check" />
</body>
</html>