-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (52 loc) · 1.94 KB
/
index.html
File metadata and controls
54 lines (52 loc) · 1.94 KB
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
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced Quiz Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header">
<h1 id="level">LEVEL</h1>
<div class="score-progress">
<p id="score">Score: 0</p>
<div class="progress-bar">
<div class="progress"></div>
</div>
</div>
</div>
<div class="object">
<div class="questions">
<p id="questions"></p>
<div class="options">
<div class="row">
<div class="option" id="option1" onclick="selectOption(this)"></div>
<div class="option" id="option2" onclick="selectOption(this)"></div>
</div>
<div class="row">
<div class="option" id="option3" onclick="selectOption(this)"></div>
<div class="option" id="option4" onclick="selectOption(this)"></div>
</div>
</div>
</div>
<div class="button">
<button id="submit" class="btn" onclick="answerCheck()">SUBMIT</button>
<button id="next" class="btn" disabled onclick="nextLevel()">NEXT</button>
</div>
</div>
</div>
<div id="endModal" class="modal">
<div class="modal-content">
<h2>Quiz Completed! 🎉</h2>
<p>Your final score is <span id="finalScore">0</span></p>
<button class="btn" onclick="restartQuiz()">Play Again</button>
</div>
</div>
<footer>
<p id="copyright">© Designed by <a href="https://www.instagram.com/samx4sure/">Samy</a></p>
</footer>
<script src="script.js"></script>
</body>
</html>