Skip to content

Commit 498d519

Browse files
committed
🚧 Add: 404 page
1 parent a3fec3d commit 498d519

2 files changed

Lines changed: 74 additions & 0 deletions

File tree

404.html

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>404 - Page Not Found</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="icon" type="image/png" href="assets/img/logo.png">
8+
<style>
9+
10+
:root {
11+
--background-color: #0c0c0c;
12+
--background-color2: #1a1a1a;
13+
--secondary-color: #333;
14+
--white: #ffffff;
15+
--tertiary-color: #CDFF71;
16+
--selection: #36576b;
17+
}
18+
19+
body {
20+
margin: 0;
21+
font-family: Inter, sans-serif;
22+
background-color: var(--background-color);
23+
color: #AAAAAA;
24+
display: flex;
25+
flex-direction: column;
26+
justify-content: center;
27+
align-items: center;
28+
height: 100vh;
29+
text-align: center;
30+
}
31+
32+
::selection{
33+
background: var(--selection);
34+
color: var(--white);
35+
}
36+
37+
h1 {
38+
font-size: 3rem;
39+
margin-bottom: 0.5rem;
40+
color: var(--white);
41+
}
42+
43+
p {
44+
font-size: 1.2rem;
45+
margin-bottom: 2rem;
46+
}
47+
48+
a {
49+
color: var(--tertiary-color);
50+
text-decoration: none;
51+
font-weight: 600;
52+
border: 1px solid var(--tertiary-color);
53+
padding: 0.5rem 1rem;
54+
border-radius: 6px;
55+
transition: all 0.2s;
56+
}
57+
58+
a:hover {
59+
background: #2E4F2F;
60+
color: var(--white);
61+
}
62+
</style>
63+
</head>
64+
<body>
65+
<h1>404</h1>
66+
<p>Oops! The page you’re looking for doesn't exist.</p>
67+
<a href="/">⬅ Back to Webring</a>
68+
</body>
69+
</html>

_redirects

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Netlify Redirects
2+
# -------------------
3+
4+
https://fr0st-webring.netlify.app/* https://webring.fr0st.xyz/:splat 301!
5+
/* /404.html 404

0 commit comments

Comments
 (0)