-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.shtml
More file actions
64 lines (54 loc) · 1.62 KB
/
404.shtml
File metadata and controls
64 lines (54 loc) · 1.62 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
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy" rel="stylesheet">
<style>
body {
background: linear-gradient(60deg,#630f0f,#c72c2c);
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
.error-margin {
margin-top: 250px;
}
.error-title {
font-family: 'Luckiest Guy', cursive;
color: #fff;
font-size: 180px;
text-align: center;
margin-bottom: .5rem;
font-weight: 500;
line-height: 1.2;
}
.error-description {
font-family: 'Luckiest Guy', cursive;
color: #fff;
font-size: 50px;
text-align: center;
margin-bottom: .5rem;
font-weight: 500;
line-height: 1.2;
}
.error-companylogo {
margin-top: 150px;
margin-bottom: 50px;
text-align: center;
}
</style>
<title>404 Error - Page not found.</title>
</head>
<body>
<div class="error-margin">
<p class="error-title">404</p>
<p class="error-description">The page was not found</p>
<div class="error-companylogo">
<a href="https://www.hexanenetworks.com">
<img src="https://cdn.hexanenetworks.com/webhosting/errorpages/errorpage-companylogo-hexanenetworks-logo-white.png">
</a>
</div>
</div>
</body>
</html>