-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
160 lines (149 loc) · 5.3 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<head>
<title>Quiz</title>
<head>
<style>
body{
color:rgb(83, 43, 226) ;
background-color: rgb(80, 255, 188);
font-size: medium;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
}
nav ul{
background-color:rgb(83, 43, 226) ;
color:white;
border-style: solid;
border-color:rgb(83, 43, 226);
border-width: 2px;
padding: 10px;
border-radius: 10px;
}
nav ul li{
list-style-type: none;
display: inline;
margin-right: 10px;
margin-left: 10px;
color: white;
}
nav ul li a{
text-decoration: none;
color: white;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">About me</a></li>
<li><a href="./how_to_play.html">How to play chess</a></li>
<li><a href="./login.html">Login</a></li>
<li><a href="./resgristation.html">Registration</a></li>
<li><a href="./quiz.html">Quiz</a></li>
<li><a href="./mathquiz.html">Math Quiz</a></li>
<li><a href="./mountain_lion.html">Mountain Lion</a></li>
<li><a href = "./feedback.html">Feedback</a></li>
</ul>
</nav>
</header>
<form>
<h3>Quiz</h3>
<h3>(Read about me to understand the quiz.)</h3>
<label for = "8">
<h3>How old Am I?</h3>
8
<input type="radio" id="8" name ="callTime"/>
<br>
</label>
<label>
18
<input type="radio" id="8" name ="callTime"/>
<br>
</label>
<label>
7
<input type="radio" id="8" name ="callTime"/>
<br>
</label>
<label>
4
<input type="radio" id="8" name ="callTime"/>
</label>
<br>
</form>
<p>-------------------------------------------------------------------------------------------------------------------</p>
<form>
<h3>What belt am I?</h3>
<label for = "black">
Red belt
<input type="radio" id="black" name ="callTime"/>
<br>
</label>
<label>
Brown belt
<input type="radio" id="black" name ="callTime"/>
<br>
</label>
<label>
Black belt
<input type="radio" id="black" name ="callTime"/>
<br>
</label>
<label>
Green belt
<input type="radio" id="black" name ="callTime"/>
</label>
<br>
</form>
<form>
<p>-------------------------------------------------------------------------------------------------------------------</p>
<h3>What do I want to be when I grow up?</h3>
<label for = "doctor">
Teacher
<input type = "radio" id = "doctor" name="callTime"/>
<br>
</label>
<label for = "doctor">
Doctor
<input type = "radio" id = "doctor" name="callTime"/>
<br>
</label>
<label for = "doctor">
Builder
<input type = "radio" id = "doctor" name="callTime"/>
<br>
</label>
<label for = "doctor">
Economist
<input type = "radio" id = "doctor" name="callTime"/>
</label>
<br>
</form>
<form>
<p>-------------------------------------------------------------------------------------------------------------------</p>
<h3>What is my name?</h3>
<label for = "Jake">
Jake
<input type = "radio" id = "Jake" name="callTime"/>
<br>
</label>
<label for = "Jake">
Samarth
<input type = "radio" id = "Jake" name="callTime"/>
<br>
</label>
<label for = "Jake">
Nandan
<input type = "radio" id = "Jake" name="callTime"/>
<br>
</label>
<label for = "Jake">
Vihaan
<input type = "radio" id = "Jake" name="callTime"/>
</label>
</label>
</form>
<p>-------------------------------------------------------------------------------------------------------------------</p>
<button type = "submit">Submit</button>
</body>