-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
125 lines (110 loc) · 2.07 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>404 - this page does not exist </title>
<style>
@import url(http://fonts.googleapis.com/css?family=Bree+Serif|Source+Sans+Pro:300,400);
*{
maring: 0;
padding: 0;
}
body{
font-family: 'Source Sans Pro', sans-serif;
background: #d6dee8;
color: #1f3759;
}
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;
}
.bree-font{
font-family: 'Bree Serif', serif;
}
#content{
margin: 0 auto;
width: 960px;
}
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: block;
}
#logo {
margin: 1em;
float: left;
display: bloack;
}
nav{
float: right;
display: block;
}
nav ul > li{
list-style: none;
float: left;
margin: 0 2em;
display: block;
}
#main-body{
text-align: center;
}
.enormous-font{
font-size: 10em;
margin-bottom: 0em;
}
.big-font{
font-size: 2em;
}
hr{
width: 25%;
height: 1px;
background: #1f3759;
border: 0px;
}
</style>
</head>
<body>
<div id="content">
<header>
<div id="logo">
<a href="#">Masseria.org</a>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<div class="clearfix"></div>
<div id="main-body">
<p class="enormous-font bree-font"> 404 </p>
<p class="big-font"> This is just embarrassing; this page does not exist... </p>
<hr>
<p class="big-font"> Let’s return to the <a href="#" class="underline">home page</a></p>
</div>
</div>
</body>
</html>