-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.html
More file actions
29 lines (25 loc) · 782 Bytes
/
quiz.html
File metadata and controls
29 lines (25 loc) · 782 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trivia Quiz</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Trivia Quiz</h1>
<div id="question-container" class="question-container">
<div id="loading">
<p id="loading-message">Your test will be ready in: <span id="countdown">10</span> seconds</p>
</div>
<div id="question"></div>
<div id="answers"></div>
</div>
<button id="next-question" class="next-btn" style="display: none;">Next Question</button>
<p id="progress">Question 1 / 10</p>
<p id="score">Score: 0</p>
</div>
<script src="quiz.js"></script>
</body>
</html>