generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
94 lines (83 loc) · 3.13 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="A Festive Quiz Game, test your knowledge of Christmas trivia" />
<meta name="keywords"
content="festive, quiz, game, christmas, trivia game" />
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous" />
<!-- Font awesome -->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="./assets/css/home.css">
<title>Santa's Quiz Adventure!</title>
</head>
<body>
<!-- hero section -->
<div class="home">
<div class="position-absolute top-0 end-0 m-5">
<span id="sound-wrapper" class="icon-btn user-centric">
<!-- switch to mute icon when clicked using JS -->
</span>
</div>
<div class="content">
<h1>Santa's Quiz Adventure!</h1>
<button id="new-game-btn" class="btn"
data-bs-target="#selectDifficultyModalToggle"
data-bs-toggle="modal">Frosty Start</button>
<!-- Button trigger modal -->
<button type="button" class="btn" data-bs-toggle="modal"
data-bs-target="#rulesModal">
Elfin Instructions
</button>
<a href="team.html"><button type="button" class="btn">
Our Team
</button></a>
<div>
</div>
</div>
</div>
<!-- Audio -->
<audio id="background-music" loop>
<source src="assets/media/indie-pop-jingle-bells-179299.mp3"
type="audio/mp3">
Your browser does not support the audio tag.
</audio>
<!-- Modals wrapper -->
<div id="modals-container">
<!-- Use JS to populate the modals here -->
</div>
<!-- Snowflakes Functionality in assets/js/script.js
Credits: https://github.com/hcodes/snowflakes/ -->
<div id="snowflakes-container"></div>
<script
src="https://unpkg.com/magic-snowflakes/dist/snowflakes.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"></script>
<!-- Custom JS -->
<script type="module" src="assets/js/game-storage.js"></script>
<script type="module" src="assets/js/home.js"></script>
<script type="module" src="assets/js/script.js"></script>
<script type="module" src="assets/js/modals.js"></script>
<script type="module" src="assets/js/homeSnowflakes.js"></script>
</body>
</html>