-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuiz.html
More file actions
42 lines (40 loc) · 1.96 KB
/
Quiz.html
File metadata and controls
42 lines (40 loc) · 1.96 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
<html>
<head>
<link herf="myStyle3.css" rel="stylesheet" type="text/css"/>
<title>Quiz</title>
</head>
<body>
<form action="Quiz.php" method="post">
<p class="heading">1) Which number of the following is greater than 5: </p>
a.<input type="radio" name="q1" value="5">5<br>
b.<input type="radio" name="q1" value="6">6<br>
c.<input type="radio" name="q1" value="4">4<br>
d.<input type="radio" name="q1" value="0">0<br>
<br>
<p class="heading">2) Which city is the largest in Kansas: </p>
a.<input type="radio" name="q2" value="Topeka">Topeka<br>
b.<input type="radio" name="q2" value="Lawrence">Lawrence<br>
c.<input type="radio" name="q2" value="Kansas City">Kansas City<br>
d.<input type="radio" name="q2" value="Wichita">Wichita<br>
<br>
<p class="heading">3) What is the capital of America: </p>
a.<input type="radio" name="q3" value="Las Vegas">Las Vegas<br>
b.<input type="radio" name="q3" value="New York City">New York City<br>
c.<input type="radio" name="q3" value="Washington DC">Washington Dc<br>
d.<input type="radio" name="q3" value="Lawrence">Lawrence<br>
<br>
<p class="heading">4) When did Americans celebrate Independence Day: </p>
a.<input type="radio" name="q4" value="July 7">July 7<br>
b.<input type="radio" name="q4" value="May 5">May 5<br>
c.<input type="radio" name="q4" value="September 15">Sep 15<br>
d.<input type="radio" name="q4" value="July 4">July 4<br>
<br>
<p class="heading">5) Which month marks the starting of Spring: </p>
a.<input type="radio" name="q5" value="March">March<br>
b.<input type="radio" name="q5" value="May">May<br>
c.<input type="radio" name="q5" value="April">April<br>
d.<input type="radio" name="q5" value="Feb">Feb<br>
<input type="submit">
</form>
</body>
</html>