-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
93 lines (76 loc) · 2.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>404 - this page does not exist </title>
<link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700%7CPT+Serif:400,700,400italic' rel='stylesheet' type='text/css'>
<style>
* {
maring: 0;
padding: 0;
}
body {
background: #92BDD6;
color: #1f3759;
}
h1, h2, h3, h4, h5, h6 {
font-family: "PT Sans Narrow",sans-serif;
line-height: .8125;
margin-bottom: 10px;
}
h1 {
font-size: 4rem;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
a:link {
color: #1f3759;
text-decoration: none;
}
a:active {
color: #1f3759;
text-decoration: none;
}
a:hover {
color: #9fb7d9;
text-decoration: none;
}
a:visited {
color: #1f3759;
text-decoration: none;
}
a.underline,
.underline {
text-decoration: underline;
}
#content {
margin: 0 auto;
width: 960px;
}
#main-body {
text-align: center;
}
.enormous-font {
font-size: 4em;
margin-bottom: 0em;
}
.big-font {
font-size: 2em;
}
hr {
width: 25%;
height: 1px;
background: #1f3759;
border: 0px;
}
</style>
</head>
<body>
<div id="content">
<div id="main-body">
<p class="enormous-font"> 404 Page Not Found </p>
<hr>
<p class="big-font"> Let’s return to the <a href="/" class="underline">home page</a></p>
</div>
</div>
</body>
</html>