-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
55 lines (50 loc) · 2.36 KB
/
404.html
File metadata and controls
55 lines (50 loc) · 2.36 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
47
48
49
50
51
52
53
54
55
<!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="Melomaniacs can test their knowledge here!">
<meta name="keywords"
content="pop culture, soundtracks, quiz, knowledge, musical instruments, music, classical music, opera">
<title>404 Melomaniac</title>
<!-- stylesheet or sheets -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- 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">
<link rel="manifest" href="assets/favicon/site.webmanifest">
</head>
<body>
<header>
<div class="nav-bar">
<img id="logo" class="logo" src="assets/images/musiclogo.webp" alt="Logo for the game">
<nav class="nav-item">
<a href="index.html" class="active" aria-label="Link to Home Page (current page)">Home</a>
<a href="team.html" aria-label="Link to Team Page(opens in the same tab)">Team</a>
</nav>
</div>
</header>
<main>
<div class="welcome-container">
<img class="welcome-image" src="assets/images/melomaniacs.webp" alt="text welcome to music trivia">
</div>
<div class="msg-container">
<h1>Sorry we cant find what you are looking for. Lets get you Bach!</h1><br>
<a href="index.html" class="game-start"
aria-label="button to return to homepage">
<span class="msg-text">Take Me Home</span></a>
</div>
</main>
<footer>
Created by The Empire Strikes Bach (Team 7) - Code Institute Hackathon, Classical Music Month
</footer>
<!-- Scripts -->
<script type="module" src="assets/js/instrumentQuestions.js"></script>
<script type="module" src="assets/js/popCultureQuestions.js"></script>
<script type="module" src="assets/js/soundQuestions.js"></script>
<script type="module" src="assets/js/composerQuestions.js"></script>
<script src="https://kit.fontawesome.com/1f32015eb0.js" crossorigin="anonymous"></script>
<noscript>Your browser does not support JavaScript!</noscript>
</body>
</html>