generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.html
28 lines (25 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta data -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="404 Error page for Blank! Game"/>
<meta name="author" content="Rebecca Tracey-Timoney">
<!-- favicon -->
<link rel="shortcut icon" href="assets/images/icon.png" title="Blank! Thumbnail Image">
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/css/style.css"/> <!-- style.css import-->
<!-- Page title -->
<title>Blank!</title>
</head>
<body id="error-page" class="light-bg">
<div id="error">
<img src="assets/images/404.png" alt="Page does not exist, click button to return to home page" id="error-img">
<h1>Oops!</h1>
<p>This page does not exist!</p>
<button aria-label="Press button to return to Homepage"><a href="index.html">Return to safety</a></button>
</div>
</body>
</html>