-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
48 lines (38 loc) · 1.41 KB
/
quiz.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
<html>
<?php include 'quiz.php';?>
<head>
<title>Quiz</title>
</head>
<body>
<h2> Quiz! </h2>
<form action="quiz.php" method="post">
Question 1: 1 + 1 = </br>
<input type="radio" name="q1" value="1">1</br>
<input type="radio" name="q1" value="2">2</br>
<input type="radio" name="q1" value="3">3</br>
<input type="radio" name="q1" value="4">4</br>
</br>Question 2: 12 - 12 = </br>
<input type="radio" name="q2" value="0">0</br>
<input type="radio" name="q2" value="98">98</br>
<input type="radio" name="q2" value="5">5</br>
<input type="radio" name="q2" value="23">23</br>
</br>Question 3: 0 - 12 = </br>
<input type="radio" name="q3" value="12">12</br>
<input type="radio" name="q3" value="21">21</br>
<input type="radio" name="q3" value="-12">-12</br>
<input type="radio" name="q3" value="-21">-21</br>
</br>Question 4: 670 + 8 = </br>
<input type="radio" name="q4" value="765">765</br>
<input type="radio" name="q4" value="567">567</br>
<input type="radio" name="q4" value="876">876</br>
<input type="radio" name="q4" value="678">678</br>
</br>Question 5: 1 - 2 = </br>
<input type="radio" name="q5" value="0">0</br>
<input type="radio" name="q5" value="11">11</br>
<input type="radio" name="q5" value="-1">-1</br>
<input type="radio" name="q5" value="18">18</br>
</br>
<input name="fubmit" type="submit"/>
</form>
</body>
</html>