-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 924 Bytes
/
index.html
File metadata and controls
35 lines (33 loc) · 924 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
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Game</title>
<link rel="stylesheet" href="/styles.css"
</head>
<body>
<!-- Start Page -->
<div id="start-container">
<h1>Welcome to the Quiz Game!</h1>
<button id="start-button">Start Quiz</button>
</div>
<!-- Quiz Page -->
<div id="quiz-container">
<h1>Quiz Game</h1>
<audio id="background-music" loop>
<source src="others/funky-and-jazzy-gang-loop-251858.mp3" type="audio/mpeg">
</audio>
<div id="question-container">
<p id="question"></p>
<div id="answers"></div>
</div>
<button id="next-button">Next Question</button>
<div id="result-container">
<p id="result"></p>
<button id="restart-button">Restart Quiz</button>
</div>
</div>
<script src="/script.js"></script>
</body>
</html>