-
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.83 KB
/
Copy path404.html
File metadata and controls
33 lines (33 loc) · 1.83 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.0">
<title>Page Not Found — CodeFix Solution</title>
<meta name="robots" content="noindex,follow">
<meta http-equiv="refresh" content="3;url=/">
<link rel="canonical" href="https://codefixsolution.com/">
<style>
:root { --bg: #0a0a0a; --card: #111; --border: #222; --text: #e5e5e5; --muted: #888; --accent: #22c55e; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.wrap { max-width: 560px; padding: 40px 24px; text-align: center; }
.code { font-family: 'SF Mono', Monaco, monospace; font-size: 13px; color: var(--accent); letter-spacing: 2px; margin-bottom: 20px; }
h1 { color: var(--text); font-size: 30px; margin-bottom: 12px; }
p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
a.home { display: inline-block; background: var(--accent); color: #0a0a0a; padding: 12px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; }
a.home:hover { background: #16a34a; }
.hint { margin-top: 24px; font-size: 13px; color: #555; }
</style>
</head>
<body>
<div class="wrap">
<div class="code">// 404 — file not found</div>
<h1>Resource doesn't exist.</h1>
<p>The path returned no result. Redirecting you to the homepage shortly.</p>
<a class="home" href="/">Go home →</a>
<div class="hint">Auto-redirect in 3 seconds.</div>
</div>
<script>setTimeout(function(){ location.replace('/'); }, 3000);</script>
</body>
</html>