-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 2.55 KB
/
Copy pathindex.html
File metadata and controls
46 lines (45 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h3>History Quiz</h3>
<h2>What was the ancient name of Iran?</h2>
<div>
<button type="radio" name="gender" value="Babylon" onclick="answerQuestion(0)"> Babylon</button><br>
<button type="radio" name="gender" value="Chaldea" onclick="answerQuestion(0)"> Chaldea</button><br>
<button type="radio" name="gender" value="Shangri La" onclick="answerQuestion(0)"> Shangri La</button><br>
<button type="radio" name="gender" value="Persia" onclick="answerQuestion(1)" id="Iran"> Persia</button><br>
</div>
<hr>
<h2>What was Porky Pigs favorite food?</h2>
<div>
<button type="radio" name="gender" value="Nutella" onclick="answerQuestion(0)"> Nutella</button><br>
<button type="radio" name="gender" value="Fruit Loops" onclick="answerQuestion(0)"> Fruit Loops</button><br>
<button type="radio" name="gender" value="Bacon" onclick="answerQuestion(1)" id="Bacon">Bacon</button><br>
<button type="radio" name="gender" value="Spinach" onclick="answerQuestion(0)"> Spinach</button><br>
</div>
<hr>
<h2>Where's Waldo?</h2>
<div>
<button type="radio" name="gender" value="Home" onclick="answerQuestion(0)" > Home</button><br>
<button type="radio" name="gender" value="Work" onclick="answerQuestion(0)"> Work</button><br>
<button type="radio" name="gender" value="on the page" onclick= "answerQuestion(1)" id= "Hiding on the page">Hiding on the page</button><br>
<button type="radio" name="gender" value="We don't know" onclick="answerQuestion(0)"> Out of town</button><br>
</div>
<hr>
<h2>What color has all colors included</h2>
<div>
<button type="radio" name="gender" value="Green" onclick="answerQuestion(0)"> Green</button><br>
<button type="radio" name="gender" value="White" onclick= "answerQuestion(1)" id= "white"> White</button><br>
<button type="radio" name="gender" value="Black" onclick="answerQuestion(0)"> Black</button><br>
<button type="radio" name="gender" value="Purple" onclick="answerQuestion(0)"> Purple</button><br>
</div>
<script src="main.js"></script>
</body>
</html>