forked from j-goodman/trivia-blitz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.82 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Londrina+Solid&family=Titan+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<title>Trivia Blitz</title>
</head>
<body>
<h1>Trivia Blitz</h1>
<h2>New York City</h2>
<div class="question-box">
<p>What Roman god of commerce and travel is represented as a statue above the entrance to Grand Central Terminal?</p>
<ul class="answers-box">
<li class="wrong-answer">Venus</li>
<li class="right-answer">Mercury</li>
<li class="wrong-answer">Hercules</li>
<li class="wrong-answer">Neptune</li>
</ul>
</div>
<div class="question-box">
<p>The U.S. capital was New York City until it was moved from there to what other city?</p>
<ul class="answers-box">
<li class="wrong-answer">Boston</li>
<li class="wrong-answer">Washington, D.C.</li>
<li class="right-answer">Philadelphia</li>
<li class="wrong-answer">Providence</li>
</ul>
</div>
<div class="question-box">
<p>What's the longest bridge in New York State?</p>
<ul class="answers-box">
<li class="wrong-answer">Queensboro Bridge</li>
<li class="wrong-answer">Kosciuszko Bridge</li>
<li class="wrong-answer">Triborough Bridge</li>
<li class="right-answer">Cuomo Bridge</li>
</ul>
</div>
</body>
</html>