-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
50 lines (44 loc) · 1.72 KB
/
Copy path404.html
File metadata and controls
50 lines (44 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found | RootNode Rebels</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Dynamic Background Elements -->
<div class="noise-overlay"></div>
<div class="gradient-bg"></div>
<!-- Navigation -->
<nav class="navbar glass">
<div class="logo">⚡ RootNode<span>Rebels</span></div>
<div class="nav-links">
<a href="/">Return Home</a>
</div>
</nav>
<!-- 404 Hero Section -->
<header class="hero" style="text-align: center;">
<div class="hero-content fade-in-up">
<h1 class="hero-title" style="font-size: clamp(5rem, 10vw, 8rem); margin-bottom: 0;">404</h1>
<h2 style="font-size: 2rem; margin-bottom: 20px;">Node Not Found</h2>
<p class="hero-desc" style="max-width: 500px;">The server architecture you are trying to access does not exist or has been relocated.</p>
<div class="hero-buttons">
<a href="/" class="btn btn-primary">Return to Root Node</a>
</div>
</div>
</header>
<!-- Scripts -->
<script>
document.addEventListener('DOMContentLoaded', () => {
const fadeElements = document.querySelectorAll('.fade-in-up');
fadeElements.forEach(el => {
setTimeout(() => el.classList.add('visible'), 100);
});
});
</script>
</body>
</html>