-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (80 loc) · 2.58 KB
/
Copy pathindex.html
File metadata and controls
85 lines (80 loc) · 2.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Quiz</title>
</head>
<body>
<h1 align="center">General Knowledge Quiz</h1>
<form>
<fieldset>
<legend>1. What is the capital of France?</legend>
<label>
<input type="radio" name="q1" value="A"> A) Berlin
</label><br>
<label>
<input type="radio" name="q1" value="B"> B) Madrid
</label><br>
<label>
<input type="radio" name="q1" value="C"> C) Paris
</label><br>
<label>
<input type="radio" name="q1" value="D"> D) Rome
</label>
</fieldset>
<br>
<fieldset>
<legend>2. Who wrote 'To Kill a Mockingbird'?</legend>
<label>
<input type="radio" name="q2" value="A"> A) Harper Lee
</label><br>
<label>
<input type="radio" name="q2" value="B"> B) J.K. Rowling
</label><br>
<label>
<input type="radio" name="q2" value="C"> C) Mark Twain
</label><br>
<label>
<input type="radio" name="q2" value="D"> D) Ernest Hemingway
</label>
</fieldset>
<br>
<fieldset>
<legend>3. What is the largest planet in our solar system?</legend>
<label>
<input type="radio" name="q3" value="A"> A) Earth
</label><br>
<label>
<input type="radio" name="q3" value="B"> B) Mars
</label><br>
<label>
<input type="radio" name="q3" value="C"> C) Jupiter
</label><br>
<label>
<input type="radio" name="q3" value="D"> D) Saturn
</label>
</fieldset>
<br>
<fieldset>
<legend>4. What is the chemical symbol for gold?</legend>
<label>
<input type="radio" name="q4" value="A"> A) Au
</label><br>
<label>
<input type="radio" name="q4" value="B"> B) Ag
</label><br>
<label>
<input type="radio" name="q4" value="C"> C) Pb
</label><br>
<label>
<input type="radio" name="q4" value="D"> D) Fe
</label>
</fieldset>
<br>
<div align="center">
<input type="submit" value="Submit Quiz">
</div>
</form>
</body>
</html>