-
Notifications
You must be signed in to change notification settings - Fork 2
/
NoviceTrek.html
73 lines (62 loc) · 2.29 KB
/
NoviceTrek.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
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Novice Trek</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://meyerweb.com/eric/tools/css/reset/reset.css">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css"/>
<link href="https://fonts.googleapis.com/css?family=Song+Myung" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/javascript/app.js"></script>
</head>
<body>
<div id="background"></div>
<h1 id="h1t">🍿 Novice Trek 🍿</h1>
<h2 id="tag">Guess the Movie Name from Pictures</h2>
<button class="start" id ="play"> 🎥 BEGIN 🎬</button>
<button class="start" id ="playAgain"> 🎥 START AGAIN! 🎬</button>
<button onclick="redirectToGifGame()" class="start" id ="playAgain" > 🎥 Advanced Trek! 🎬</button>
<div id="ticketContainer">
<img id="ticket" src="assets/images/ticket.png">
<h3 id="emoji"></h3>
<h3 id="qNum"></h3>
<div id="results">
<h3id="done">Trivia Completed! Here's how you did!</h3>
<div id="correct">
<h3>Correct Answers</h3>
<h3 id="corNum"></h3>
</div>
<div id="incorrect">
<h3>Incorrect Answers</h3>
<h3 id="incorNum"></h3>
</div>
</div>
</div>
<div id ="filmContainer">
<img id="film" src="assets/images/film.png">
<table>
<tr>
<td>
<div id="a" class="choice"></div>
</td>
<td>
<div id="b" class="choice"></div>
</td>
<td>
<div id="c" class="choice"></div>
</td>
<td>
<div id="d" class="choice"></div>
</td>
</tr>
</table>
</div>
<script>
function redirectToGifGame() {
window.location.href = "AdvancedTrek.html";
}
</script>
</body>
</html>