-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion_10.html
More file actions
46 lines (46 loc) · 1.91 KB
/
Copy pathQuestion_10.html
File metadata and controls
46 lines (46 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>THE MANDELA EFFECT QUIZ</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>THE MANDELA EFFECT QUIZ</h1>
</header>
<main class="body-of-text">
<!-- Question 10 content -->
<h2>Question 10:</h2>
<p>In Oliver Twist, what did he actually say?</p>
<ul>
<li><label><input type="radio" name="q10" value="Answer1" onchange="saveAnswer('q10', 'Answer1')">Please, sir, I want some more.</label></li>
<li><label><input type="radio" name="q10" value="Answer2" onchange="saveAnswer('q10', 'Answer2')">Please, sir, may I have some more?</label></li>
<li><label><input type="radio" name="q10" value="Answer3" onchange="saveAnswer('q10', 'Answer3')">Please, sir, can I have more?</label></li>
<li><label><input type="radio" name="q10" value="Answer4" onchange="saveAnswer('q10', 'Answer4')">Can I have more please, I'm peckish!</label></li>
</ul>
<a href="Question_9.html" class="prev-question">Previous Question</a>
<img src="oliver_twist.jpeg" class="Oliver_Twist">
<button id="submit-btn">Submit</button>
</main>
<audio id="dramatic_music" autoplay loop>
<source src="dramatic_music.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<footer>
<hr />
<p class="copyright">© 2024 Dale Colman</p>
</footer>
<script src="javascript.js"></script>
<script>
//Call displayFinalScore function when the page loads
window.onload = function() {
//Calculate the score
var finalScore = calculateScore();
//Display the final score
displayFinalScore(finalScore);
};
</script>
</body>
</html>