-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
56 lines (56 loc) · 1.11 KB
/
404.html
File metadata and controls
56 lines (56 loc) · 1.11 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Error 404, page not found</title>
</head>
<style media="screen">
html, body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background: #F2F3F7;
}
.box {
height: 85%;
width: 85%;
top: 7.5%;
left: 7.5%;
position: fixed;
border-radius: 30px;
text-align: center;
box-shadow: 24px 24px 48px #babbbe,
-24px -24px 48px #ffffff;
}
h1 {
top: 90px;
position: relative;
color: #202020;
font-size: 80px;
}
p.l {
top: 150px;
position: relative;
color: #202020;
width: 75%;
margin-left: auto;
margin-right: auto;
}
.text {
top: 50%;
vertical-align: middle;
}
a {
text-decoration: none;
color:inherit;
}
</style>
<body>
<a href="index.html">
<div class="box">
<h1>404</h1>
<p class="l">This page just <i>does not</i> exist. That's embarrassing. Click on this card to go home.</p>
</div>
</a>
</body>
</html>