generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path404.html
56 lines (49 loc) · 2.07 KB
/
404.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
<!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">
<!-- Add 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/game.css">
<title>Festive Quiz - Game Board</title>
</head>
<body class="game-image vh-100">
<div class="container header-container">
<div class="row">
<div class="col"></div>
</div>
</div>
<div class="container h-100 bg-white">
<div class="row h-100">
<div class="col-7 col-md-6 my-auto mx-auto">
<h3 class="display-6 text-center">
Error 404! <br>
The page you are looking for isn't available.
</h3>
<div class="col-12 text-center">
<h4>
<span class="icon">
<i class="fa-solid fa-caret-left"></i>
</span>
<a href="index.html" class="btn btn-info rounded-0 btn-lg mb-2">
Back
</a>
</h4>
</div>
</div>
</div>
</div>
</body>
</html>