-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
48 lines (36 loc) · 1.35 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
46
47
48
<!-- https://cs50.harvard.edu/x/2023/labs/8/ -->
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<title>Trivia!</title>
<script src="script.js"></script>
</head>
<body>
<div class="header">
<h1>Trivia!</h1>
</div>
<div class="container">
<div class="section">
<h2>Part 1: Multiple Choice </h2>
<hr>
<h3>Which city is the state capital of California?</h3>
<button class="incorrect">Los Angeles</button>
<button class="correct">Sacramento</button>
<button class="incorrect">San Francisco</button>
<button class="incorrect">San Diego</button>
<button class="incorrect">Bakersfield</button>
<p id="feedback1"></p>
</div>
<div class="section">
<h2>Part 2: Free Response</h2>
<hr>
<h3>Which mountain peak is the highest in North America?</h3>
<input type="text"></input>
<button id="check">Check</button>
<p id="feedback2"></p>
</div>
</div>
</body>
</html>