-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
33 lines (33 loc) · 1.02 KB
/
404.html
File metadata and controls
33 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>404 — Page Not Found</title>
<style>
body {
background: #000;
color: #ddd;
font-family: 'Courier New', monospace;
margin: 0;
padding: 2rem;
line-height: 1.5;
}
.container { max-width: 800px; margin: 0 auto; text-align: center; }
header { border-bottom: 2px solid #2a2a2a; margin-bottom: 2rem; padding-bottom: 1rem; }
h1 { font-size: 2.5rem; margin: 0; color: #fff; }
a { color: #7f9eff; text-decoration: none; }
a:hover { text-decoration: underline; }
footer { margin-top: 2rem; color: #555; font-size: 0.7rem; border-top: 1px dashed #2a2a2a; padding-top: 1rem; }
</style>
</head>
<body>
<div class="container">
<header><h1>Codex.bat</h1></header>
<h2>404 — Page Not Found</h2>
<p>Oops! The page you were looking for doesn’t exist.</p>
<p><a href="/">Go back home</a></p>
<footer>© 2026 Codex.bat All rights reserved</footer>
</div>
</body>
</html>