This repository was archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
31 lines (31 loc) · 1.37 KB
/
404.html
File metadata and controls
31 lines (31 loc) · 1.37 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
<html>
<style type="text/css">
h1 { color: rgb(255, 255, 255); text-align: center; font-family: Arial, Helvetica, sans-serif; font-size:45px}
h3 { color: rgb(255, 255, 255); text-align: center; font-family: Arial, Helvetica, sans-serif; font-size:30px}
body {
background-color:rgb(0, 0, 0);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
button { color: rgb(255, 255, 255); background-color: rgb(0, 87, 87); padding:10px 20px; border-color:black; font-family: Arial, Helvetica, sans-serif; font-size:30px; font-size:20px}
</style>
<head>
<title>404 Error</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<center>
<br>
<br>
<h1>404 Error - Page Not Found</h1>
<h3>The page you requested to view was not found.</h3>
<h3>If you believe this to be an error, please contact Depth via the email <a href="./contact.html" target="_blank">here</a>.</h3>
<br>
<h3>Otherwise, you can return to the front page of the website.</h3>
<br>
<button onclick="window.location.href='./index.html'"">Go Home</button>
</center>
</body>
</html>