-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
90 lines (75 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>404 | Page not found.</title>
<style type="text/css">
body {
padding: 30px 20px;
font-family: -apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
"Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
color: #727272;
line-height: 1.6;
}
.container {
max-width: 500px;
margin: 0 auto;
}
h1 {
margin: 0 0 40px;
font-size: 60px;
line-height: 1;
color: #252427;
font-weight: 700;
}
h2 {
margin: 100px 0 0;
font-size: 20px;
font-weight: 600;
letter-spacing: 0.1em;
color: #A299AC;
text-transform: uppercase;
}
p {
font-size: 16px;
margin: 1em 0;
}
.go-back a {
display: inline-block;
margin-top: 3em;
padding: 10px;
color: #1B1A1A;
font-weight: 700;
border: solid 2px #e7e7e7;
text-decoration: none;
font-size: 16px;
text-transform: uppercase;
letter-spacing: 0.1em;
}
.go-back a:hover {
border-color: #1B1A1A;
}
@media screen and (min-width: 768px) {
body {
padding: 50px;
}
}
@media screen and (max-width: 480px) {
h1 {
font-size: 48px;
}
}
</style>
</head>
<body>
<div class="container">
<center><a href="https://placeholder.com" class="brand"><img src="assets/img/icell_black.png" width="100" height="100"></a></center>
<h2>404</h2>
<h1>Page not found.</h1>
<p>We’re sorry but it appears that we can’t find the page you were looking for. Usually this occurs because of a page that previously existed was removed or you’ve mistyped the address.</p>
<span class="go-back"><a href="index.html">Go back</a></span>
</div>
</body>
</html>