-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (55 loc) · 2.26 KB
/
index.html
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Caging Quiz</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body>
<div class="scores"><a href="highscores.html">View Highscores</a></div>
<div class="timer">Time:<span id="time"></span></div>
<div class="wrapper">
<div id="start-screen" class="start">
<h1>Cage Quiz Challenge</h1>
<iframe src="https://giphy.com/embed/Qw4X3FnmFFCPANtlhtK"
alt="Nicolas Cage in FaceOff triple pointing and shaking fingers to say OK let's ride with a nod." width="480"
height="201" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
<p><a href="https://giphy.com/gifs/nicolas-cage-lets-ride-gone-in-sixty-seconds-Qw4X3FnmFFCPANtlhtK"></a></p>
<p>
Try to answer the following Nic Cage questions within the time
limit. Keep in mind that incorrect answers will penalize your
score/time by ten seconds!
</p>
<button id="start-button">Start Quiz</button>
</div>
<div id="questions" class="hide">
<h2 id="question-title"></h2>
<div id="choices" class="choices"></div>
</div>
<div id="end-screen" class="hide">
<h2>All done!</h2>
<iframe src="https://giphy.com/embed/RkCiDG5R9NA47Cuch0"
alt="Nicolas Cage gently massaging someone's shoulder with one hand in a bar whilst eating peanuts." width="480"
height="251" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
<p><a href="https://giphy.com/gifs/SignatureEntertainmentUK-nicolas-cage-nic-niccage-RkCiDG5R9NA47Cuch0"></a></p>
<p>
<p>Your final score is <span id="final-score"></span>.</p>
<p>
Enter initials: <input type="text" id="initials" max="3" />
<button id="submit">Submit</button>
</p>
</div>
<div id="feedback" class="feedback hide"></div>
</div>
<audio id="audio-yes">
<source src="assets/sfx/yes.mp3">
</audio>
<audio id="audio-no">
<source src="assets/sfx/no.mp3">
</audio>
<script src="./assets/js/questions.js"></script>
<script src="./assets/js/logic.js"></script>
</body>
</html>