-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
57 lines (55 loc) · 1.68 KB
/
404.html
File metadata and controls
57 lines (55 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | Said Elimam</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
<style>
.error-container {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}
.error-code {
font-family: 'JetBrains Mono', monospace;
font-size: 8rem;
font-weight: 700;
color: var(--accent-primary);
text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
margin-bottom: 1rem;
}
.error-message {
font-size: 1.5rem;
color: var(--text-primary);
margin-bottom: 2rem;
}
.error-link {
color: var(--accent-primary);
text-decoration: none;
font-weight: 500;
padding: 12px 24px;
border: 1px solid var(--border-color);
border-radius: 8px;
transition: all 0.3s ease;
}
.error-link:hover {
color: var(--accent-secondary);
border-color: var(--accent-secondary);
transform: translateY(-2px);
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-code">404</div>
<div class="error-message">Page Not Found</div>
<a href="/" class="error-link">Return to Home</a>
</div>
</body>
</html>