-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion2.html
56 lines (45 loc) · 2.19 KB
/
question2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KOZZ QUIZ</title>
<link href="https://fonts.googleapis.com/css?family=Dosis:300,400,600,700|Open+Sans:300,400,600,700" rel="stylesheet">
<script src="https://kit.fontawesome.com/f4bf10d3c2.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="CSS/font.css" type="text/css" rel="stylesheet">
<link href="CSS/animationsSize.css" type="text/css" rel="stylesheet">
<link href="CSS/button.css" type="text/css" rel="stylesheet">
<link href="CSS/bootstrap-overrides.css" type="text/css" rel="stylesheet">
</head>
<body>
<section id="question2" class="p-4 bg-blue">
<div class="d-flex flex-column justify-content-center align-items-center text-center">
<div class="display-6 heading-font heading-font mb-3">What was the second wonder of the ancient world?
</div>
<div class="d-flex flex-row max-width align-items-center justify-content-center p-3 mx-auto bg-blue">
<img src="Images/Ancient wonders.PNG">
<div class="d-none d-md-flex">
</div>
</div>
<button type="submit" class="btn btn-grey display-8 heading-font rounded-100 text-white mb-3 p-2"
unchecked="unchecked" name='option' VALUE="false">
Colossus of Rhodes
</button>
<button type="submit" class="btn btn-grey display-8 heading-font rounded-100 text-white mb-3 p-2"
unchecked="unchecked" name='option' VALUE="false">
Temple of Artemis
</button>
<button type="submit" class="btn btn-grey display-8 heading-font rounded-100 text-white mb-3 p-2"
unchecked="unchecked" name='option' VALUE="true">
Hanging Gardens of Babylon
</button>
<button type="submit" class="btn btn-grey display-8 heading-font rounded-100 text-white mb-3 p-2"
unchecked="unchecked" name='option' VALUE="false">
Lighthouse of Alexandria
</button>
<a href="ending.html" button class="btn btn-cozy rounded-100 heading-font display-8 text-white p-3 mt-3">
Next </a>
</div>
</section>
</body>