generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
43 lines (39 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description"
content="St. Patrick's theme quiz game. A Quiz for St. Patrick's Day to steal the gold of the leprechaun.">
<meta name="keywords"
content="St. Patrick's Day, Quiz, paddy day, steal the gold, leprechaun, irish, gold pot, multiple choice">
<meta name="author" content="Team-18">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="64x64" href="assets/images/clover_favicon.jpg" />
<!-- CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/404.css" type="text/css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" />
<title>HTTP 404 Error</title>
</head>
<body>
<!-- Main Section -->
<main>
<div id="notfound">
<div class="notfound">
<div>
<img id="leprechaun" src="assets/images/leprechaun.png" alt="Leprechaun">
</div>
<div class="notfound-404">
<h1>Oops!</h1>
</div>
<h2>404 - Page not found</h2>
<p>The page you are looking for might have been removed had its name changed or is temporarily unavailable.</p>
<a href="index.html">Play the game again!</a>
</div>
</div>
</main>
<!-- /Main Section -->
</body>
</html>