-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnot_found.html
More file actions
84 lines (80 loc) · 2.59 KB
/
not_found.html
File metadata and controls
84 lines (80 loc) · 2.59 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="index/style.css?v=4">
<style>
html, body {
height: 100% !important;
margin: 0 !important;
padding: 0 !important;
}
body {
display: flex !important;
flex-direction: column !important;
}
.main-wrapper {
flex: 1 0 auto !important;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.site-footer {
flex-shrink: 0 !important;
}
.error-box {
max-width: 600px;
}
.error-box img {
max-width: 300px;
margin-bottom: 20px;
}
.error-box h1 {
font-size: 48px;
margin-bottom: 10px;
}
.error-box p {
font-size: 18px;
}
</style>
</head>
<body>
<!-- Header -->
<header class="site-header">
<div class="header-content">
<div class="header-nav">
<nav>
<ul>
<li><a href="index.html">/index/</a></li>
<li><a href="boards/b/index.html">/b/</a></li>
<li><a href="boards/a/index.html">/a/</a></li>
<li><a href="boards/dev/index.html">/dev/</a></li>
<li><a href="boards/g/index.html">/g/</a></li>
<li><a href="boards/v/index.html">/v/</a></li>
<li><a href="boards/r/index.html">/r/</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!-- 404 Content -->
<div class="main-wrapper">
<div class="error-box">
<img src="index/nekoz.webp" alt="Neko-Maid">
<h1>404</h1>
<p>We are sorry! Neko-Maid was looking everywhere, but she can't find this page!</p>
<p><a href="index.html">Return to homepage</a></p>
</div>
</div>
<!-- Footer -->
<footer class="site-footer">
<div class="footer-content">
<p><a href="rules.html">Rules</a> | <a href="faq.html">FAQ</a> | <a href="contact.html">Contact</a></p>
<p>HTML-Chan v0.1</p>
</div>
</footer>
</body>
</html>