-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
56 lines (55 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CB08JFHVHT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CB08JFHVHT');
</script>
<title>404 Page Not Found</title>
<style>
/* Center the content horizontally and vertically */
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
/* Style the text */
h1 {
font-size: 5rem;
font-weight: bold;
text-align: center;
margin-bottom: 2rem;
}
p {
font-size: 2rem;
text-align: center;
}
ul {
font-size: 1.5rem;
text-align: center;
list-style-type: none;
}
li {
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div>
<h1>404 Page Not Found</h1>
<p>Sorry, the page you requested could not be found.</p>
<p>Back to:</p>
<ul>
<li><a href="/en/">Homepage of AstroWarp docs</a></li>
<li><a href="mailto:[email protected]?subject=I find a 404 error on your AstroWarp docs site">Send us this 404 error by email</a></li>
</ul>
</div>
</body>
</html>