-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquiz.html
46 lines (45 loc) · 1.72 KB
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>General Knowledge Quiz</title>
<!--meta data and links-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Graham Williamson">
<meta name="description" content="quiz">
<meta name="keywords" content="quiz, knowledge, test, game">
<link rel="shortcut icon" type="image/png" href="assets/images/favicon.png">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Libre+Caslon+Text&family=Poppins:ital,wght@1,600&display=swap" rel="stylesheet">
</head>
<body>
<!--Quiz instruction area-->
<body>
<h1>10 Questions</h1>
<div class="container">
<div class="quiz">
<h2 id="question">Loading question...</h2>
<div id="choices"></div>
<button id="submit">Submit</button>
</div>
<div class="leaderboard">
<h2>Leaderboard</h2>
<hr><br>
<a href="index.html" id="start">Start Again</a>
<ol id="scores"></ol>
</div>
</div>
<!--copyright-->
<div class="copyright">
<div class="icon">
<a href="mailto:[email protected]" aria-label="Email Me"><i class='bx bx-envelope bx-burst'></i></a>
</div>
<p>© 2023 All rights reserved | Designed by Graham Williamson.</p>
</div>
<!--javascript lint-->
<script src="assets/js/script.js"></script>
</body>
</html>