-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
86 lines (83 loc) · 2.55 KB
/
404.html
File metadata and controls
86 lines (83 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en-CM">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="/css/style.css">
<meta name="description" content="404 - Page Not Found">
<meta name="keywords" content="404, page not found, error">
<meta name="author" content="Offizone">
<meta name="robots" content="noindex, nofollow">
<meta property="og:title" content="404 - Page Not Found">
<link rel="stylesheet" href="/css/bootstrap/bootstrap.min.css">
<link
rel="shortcut icon"
href="/images/favicon/favicon.ico"
type="image/x-icon"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/images/favicon/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/images/favicon/android-chrome-512x512.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/images/favicon-16x16.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/images/favicon/apple-touch-icon.png"
/>
<link rel="manifest" href="/images/favicon/site.webmanifest" />
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
.error-page {
text-align: center;
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-16911629100"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-16911629100');
</script>
</head>
<body class="d-flex flex-column justify-content-center align-items-center">
<div class="error-page">
<h1>404</h1>
<h2>Oops! Page Not Found</h2>
<p>Sorry, the page you are looking for does not exist. You can go back to the homepage.</p>
<p>If you think this is a mistake, please contact us. <a href="mailto:info@cirronyx.com">info@cirronyx.com</a> Thank you.</p>
<div class="gohome">
<a href="/" class="btn-effect "><span>Go to Homepage</span></a>
</div>
</div>
</body>
</html>