-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
73 lines (63 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Page Not Found</title>
<meta name="robots" content="noindex, follow">
<style>
* {
-webkit-box-sizing: border-box;
box-sizing: border-box
}
body {
font-family: sans-serif;
}
#notfound {
height: 100svh;
display: grid;
place-content: center;
}
.notfound {
max-width: 600px;
width: 100%;
text-align: center
}
.notfound-404 h1 {
font-size: 4rem;
margin: 0 0 1rem 0;
}
.notfound p {
line-height: 1.5rem;
font-size: 1rem;
}
.notfound a {
font-size: 1rem;
text-decoration: none;
text-transform: uppercase;
background: #333;
display: inline-block;
padding: 1rem 2rem;
border-radius: 1rem;
color: #fff;
font-weight: 700;
box-shadow: 0 4px 15px -5px #333
}
</style>
</head>
<body>
<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>Oops!</h1>
</div>
<h2>404 - Page not found</h2>
<p>Uh-oh! It seems the page you're looking for has either been removed, relocated, or may not exist at all. Before you
venture further, double-check the URL in your browser. If all seems well, consider navigating back to our homepage to
explore anew. Thanks for your understanding!</p>
<a href="/">Go To Homepage</a>
</div>
</div>
</body>
</html>