-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
117 lines (117 loc) · 3.57 KB
/
404.html
File metadata and controls
117 lines (117 loc) · 3.57 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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 - NeuroDev</title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
body {
background: linear-gradient(135deg, #0a0e27 0%, #1e2a47 100%);
color: #fff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.error-container {
text-align: center;
max-width: 600px;
padding: 2rem;
}
.error-icon {
font-size: 8rem;
color: #00d4aa;
margin-bottom: 1rem;
animation: pulse 2s infinite;
}
.error-code {
font-size: 6rem;
font-weight: bold;
color: #00d4aa;
margin: 0;
text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}
.error-title {
font-size: 2rem;
margin: 1rem 0;
color: #8892b0;
}
.error-message {
font-size: 1.2rem;
margin: 1.5rem 0;
color: #ccc;
line-height: 1.6;
}
.error-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 2rem;
}
.btn {
padding: 1rem 2rem;
border: none;
border-radius: 25px;
font-weight: bold;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
cursor: pointer;
}
.btn-primary {
background: linear-gradient(135deg, #00d4aa, #64ffda);
color: #0a0e27;
}
.btn-secondary {
background: transparent;
border: 2px solid #00d4aa;
color: #00d4aa;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
@media (max-width: 768px) {
.error-code { font-size: 4rem; }
.error-title { font-size: 1.5rem; }
.error-message { font-size: 1rem; }
.error-actions { flex-direction: column; align-items: center; }
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-icon">
<i class="fas fa-exclamation-triangle"></i>
</div>
<h1 class="error-code">404</h1>
<h2 class="error-title">Page Not Found</h2>
<p class="error-message">
Oops! The page you're looking for seems to have vanished into the digital void.
Don't worry, even the best hackers sometimes take a wrong turn!
</p>
<div class="error-actions">
<a href="/" class="btn btn-primary">
<i class="fas fa-home"></i>
Go Home
</a>
<a href="courses.html" class="btn btn-secondary">
<i class="fas fa-graduation-cap"></i>
Browse Courses
</a>
</div>
</div>
</body>
</html>