-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdifficulty.html
More file actions
26 lines (26 loc) · 873 Bytes
/
Copy pathdifficulty.html
File metadata and controls
26 lines (26 loc) · 873 Bytes
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
<h3>Problem Type: </h3>
<form role="form">
<div class="checkbox">
<label><input type="checkbox" id="add"> Addition</label>
</div>
<div class="checkbox">
<label><input type="checkbox" id="sub"> Subtraction</label>
</div>
<div class="checkbox">
<label><input type="checkbox" id="mult"> Multiplication</label>
</div>
<div class="checkbox">
<label><input type="checkbox" id="div"> Division</label>
</div>
<h3>Difficulty: </h3>
<div class="radio">
<label><input type="radio" name="optradio" id="easy" checked>Easy</label>
</div>
<div class="radio">
<label><input type="radio" name="optradio" id="medium">Medium</label>
</div>
<div class="radio">
<label><input type="radio" name="optradio" id="hard">Hard</label>
</div>
<button type="submit" class="btn btn-default" id="begin">Begin</button>
</form>