-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
39 lines (39 loc) · 827 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html {
color: #333;
display: table;
font-family: sans-serif;
height: 100%;
text-align: center;
width: 100%;
line-height: 1.2;
margin: 0;
}
body {
display: table-cell;
vertical-align: middle;
margin: 2em auto;
}
p {
margin: 16px auto;
width: 280px;
}
</style>
</head>
<body>
<h1>Page Not Found</h1>
<p>The page you were trying<br>to view does not exist</p>
<p><a onclick="Back()" href="#">Go back</a> / <a href="/">Go home</a></p>
</body>
<script type="text/javascript">
function Back() {
window.history.back();
}
</script>
</html>