-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 2.07 KB
/
index.html
File metadata and controls
67 lines (64 loc) · 2.07 KB
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
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<head>
<title>Math Test</title>
</head>
<h1>Math Test Unit 1</h1>
<!-- Start Test Form-->
<form>
<p>Name:</p>
<input type="text">
<p>Email:</p>
<input type="text">
<p>Age</p>
<select>
<option selected>0-16</option>
<option>17-25</option>
<option>26-45</option>
<option>46-65</option>
<option>66-99</option>
</select>
<p></p>
<fieldset>
<legend>Multiple Choice</legend>
<p>24×3=?</p>
<input type="radio" name="q1" value="none">
88<br />
<input type="radio" name="q1" value="low">
64<br />
<input type="radio" name="q1" value="med">
75<br />
<input type="radio" name="q1" value="high">
72<br />
<p>10000000÷100=?</p>
<input type="radio" name="q2" value="none">
100000<br />
<input type="radio" name="q2" value="low">
10<br />
<input type="radio" name="q2" value="med">
10000<br />
<input type="radio" name="q2" value="high">
1000000000000000<br />
<p>239487–34567=?</p>
<input type="radio" name="q3" value="none">
456769<br />
<input type="radio" name="q3" value="low">
193437<br />
<input type="radio" name="q3" value="med">
204920<br />
<input type="radio" name="q3" value="high">
220904<br />
</fieldset>
<fieldset>
<legend>Short Answer</legend>
<p>A man drove to the local fruit market to purchased 200 watermelons for his store. He loaded them in his truck
and he could not go anywhere, so he weighed them all to find out that they were 1000lbs. His truck can only
hold 800lbs. How many watermelons can the man take home in one trip?
</p>
Please answer in 1-3 sentences<br />
<textarea></textarea>
</fieldset>
<button type="submit">Submit</button>
</form>
<!-- End Test Form -->
<p style="font-size:16px;">I am a paragraph with <span style="font-size:150%;">font size changes.<span></p>
</html>