-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
59 lines (55 loc) · 1.31 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
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Page Not Found</title>
<style>
* {
line-height: 1.5;
margin: 0; }
html {
color: #333;
color: white;
/* background-color: whitesmoke; */
background-color: #ddd;
background-color: #333;
display: table;
font-family: sans-serif;
text-align: center;
height: 100%;
width: 100%; }
body {
display: table-cell;
vertical-align: middle;
margin: 2em auto; }
h1 {
/* color: #555; */
color: whitesmoke;
font-size: 3em;
letter-spacing: -.025em;
font-weight: 600; }
p {
font-size: 1.5em;
margin: 0 auto;
width: 320px; }
@media only screen and (max-width: 360px) {
body, p {
font-size: 1em;
width: 90%; }
h1 {
font-size: 2em;
margin: 0 0 .25em; }
}
</style>
</head>
<body>
<h1>Page Not Found</h1>
<p>Sorry, but the page you were trying to view doesn’t exist.</p>
<br>
<br>
<button onclick="goBack()"><big> <strong>GO BACK</strong> </big></button>
<script>function goBack() { window.history.back(); }</script>
</body>
</html>
<!-- IE needs 512+ bytes: https://blogs.msdn.microsoft.com/ieinternals/2010/08/18/friendly-http-error-pages/ -->