-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
90 lines (81 loc) · 2.43 KB
/
Copy path404.html
File metadata and controls
90 lines (81 loc) · 2.43 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
<!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</title>
<link rel="stylesheet" href="styles.css">
<style>
.error-page {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 2rem;
}
.error-content {
max-width: 600px;
background: #1e2030;
padding: 3rem;
border-radius: 24px;
border: 1px solid #363a4f;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.error-code {
font-size: 8rem;
font-weight: 700;
color: #8aadf4;
margin-bottom: 1rem;
line-height: 1;
}
.error-message {
font-size: 1.5rem;
color: #cad3f5;
margin-bottom: 2rem;
}
.error-description {
color: #b8c0e0;
margin-bottom: 2rem;
line-height: 1.6;
}
.back-home {
display: inline-block;
background: linear-gradient(135deg, #8aadf4, #c6a0f6);
color: #1e2030;
padding: 1rem 2rem;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(138, 173, 244, 0.3);
}
.back-home:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(138, 173, 244, 0.4);
}
@media (max-width: 768px) {
.error-code {
font-size: 4rem;
}
.error-message {
font-size: 1.2rem;
}
}
</style>
</head>
<body>
<div class="error-page">
<div class="error-content">
<div class="error-code">404</div>
<h1 class="error-message">Page Not Found</h1>
<p class="error-description">
The page you're looking for doesn't exist. It might have been moved, deleted, or you entered the wrong URL.
</p>
<a href="/should-i-retake/" class="back-home">
Go Back to CGPA Calculator
</a>
</div>
</div>
</body>
</html>