-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
164 lines (163 loc) · 4.17 KB
/
404.html
File metadata and controls
164 lines (163 loc) · 4.17 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>404 Error | Devvy</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
color: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.error-container {
text-align: center;
padding: 40px;
max-width: 600px;
animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.error-code {
font-size: 10em;
font-weight: 900;
background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 20px;
letter-spacing: -0.02em;
}
.error-title {
font-size: 2em;
font-weight: 700;
margin-bottom: 16px;
color: rgba(255,255,255,0.95);
}
.error-message {
font-size: 1.1em;
color: rgba(255,255,255,0.6);
margin-bottom: 40px;
line-height: 1.6;
}
.home-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
border: none;
color: white;
padding: 16px 36px;
font-size: 16px;
font-weight: 600;
border-radius: 12px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
cursor: pointer;
}
.home-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}
.floating-shapes {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}
.shape {
position: absolute;
border-radius: 50%;
background: rgba(34, 197, 94, 0.05);
animation: float 20s infinite ease-in-out;
}
.shape:nth-child(1) {
width: 300px;
height: 300px;
top: 10%;
left: 10%;
animation-delay: 0s;
}
.shape:nth-child(2) {
width: 200px;
height: 200px;
top: 60%;
right: 15%;
animation-delay: 5s;
}
.shape:nth-child(3) {
width: 150px;
height: 150px;
bottom: 20%;
left: 20%;
animation-delay: 10s;
}
@keyframes float {
0%, 100% {
transform: translate(0, 0) scale(1);
}
33% {
transform: translate(30px, -30px) scale(1.1);
}
66% {
transform: translate(-20px, 20px) scale(0.9);
}
}
@media (max-width: 768px) {
.error-code {
font-size: 6em;
}
.error-title {
font-size: 1.5em;
}
.error-message {
font-size: 1em;
}
.error-container {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="floating-shapes">
<div class="shape"></div>
<div class="shape"></div>
<div class="shape"></div>
</div>
<div class="error-container">
<div class="error-code">404</div>
<h1 class="error-title">Page Not Found</h1>
<p class="error-message">Uh oh! it looks like ts aint the right page :( Sorry!</p>
<a href="/index.html" class="home-btn">
<i class="fas fa-home"></i>
Go to Home
</a>
</div>
</body>
</html>