-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
46 lines (41 loc) · 1004 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>containers</title>
<meta name="robots" content="noindex">
<style type="text/css">
body {
color: #fff;
background: #17181c;
font: 300 1em 'Fira Sans', sans-serif;
-webkit-box-pack: center;
justify-content: center;
align-content: center;
-webkit-box-align: center;
align-items: center;
text-align: center;
min-height: 95vh;
display: -webkit-box;
display: flex;
}
h1 {
font-weight: 400;
}
code {
color: #17c0eb;
font: inherit;
}
a {
text-decoration: none;
color: #fff;
font-weight: 400;
}
</style>
</head>
<body>
<div>
<h1>404 <code> Page Not found</code></h1>
<a href="/"><h1>Go to 🏠 📄</h1></a>
</div>
</body>
</html>