-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion_5.html
More file actions
37 lines (37 loc) · 1.87 KB
/
Copy pathQuestion_5.html
File metadata and controls
37 lines (37 loc) · 1.87 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
<!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 5 content -->
<h2>Question 5:</h2>
<p>In the Snow White and the Seven Dwarves, what was the Evil Queen's famous line?</p>
<ul>
<li><label><input type="radio" name="q5" value="Answer1" onchange="saveAnswer('q5', 'Answer1')">Mirror, mirror on the wall, who is the best of them all?</label></li>
<li><label><input type="radio" name="q5" value="Answer2" onchange="saveAnswer('q5', 'Answer2')">Mirror, mirror on the wall, who is the fairest of them all?</label></li>
<li><label><input type="radio" name="q5" value="Answer3" onchange="saveAnswer('q5', 'Answer3')">Magic mirror on the wall, who is the best of them all?</label></li>
<li><label><input type="radio" name="q5" value="Answer4" onchange="saveAnswer('q5', 'Answer4')">Magic mirror on the wall, who is the fairest of them all?</label></li>
</ul>
<a href="Question_4.html" class="prev-question">Previous Question</a>
<a href="Question_6.html" class="next-question" data-question="q5">Next Question</a>
<img src="https://64.media.tumblr.com/f063b911114d7824100ecf72781a9303/tumblr_mzyvwcKgD51rwfctbo1_400.gif" alt="Snow_White" class="Snow_White">
</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>
</body>
</html>