-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
119 lines (103 loc) · 3.23 KB
/
404.html
File metadata and controls
119 lines (103 loc) · 3.23 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
<!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">
<link rel="icon" href="https://i.imgur.com/2yaf2wb.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Orbitron', sans-serif;
background-color: #1f2937;
color: #f9fafb;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.error-container {
text-align: center;
padding: 4rem 1rem;
flex-grow: 1;
}
.error-container h1 {
font-size: 6rem;
color: #ef4444;
animation: pulse 1.5s infinite;
}
.para1, .para2, .para3 {
max-width: 600px;
margin: 1rem auto;
font-size: 1.1rem;
line-height: 1.6;
}
.para1 {
color: #facc15;
font-style: italic;
}
.para2 {
color: #34d399;
font-weight: bold;
}
.para3 {
color: #60a5fa;
text-decoration: underline;
}
.button {
display: inline-block;
background-color: #10b981;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
text-decoration: none;
margin-top: 2rem;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.button:hover {
background-color: #059669;
transform: scale(1.05);
}
footer {
background-color: #111827;
color: #d1d5db;
text-align: center;
padding: 1rem;
font-size: 0.9rem;
}
footer a {
color: #93c5fd;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav>
<div class="nav-container">
<a href="index.html" class="logo">MC Server Guide</a>
<div class="nav-links">
<a href="windows.html">Windows</a>
<a href="linux.html">Linux</a>
<a href="mac.html">MacOS</a>
<a href="notes.html">Personal Notes</a>
</div>
</div>
</nav>
<main>
<div class="error-container">
<h1>404</h1>
<p class="para1">Oops! You took a wrong turn on the blocky path 🚧</p>
<p class="para2">Don’t worry though, even Endermen sometimes get lost.</p>
<p class="para3">Use the button below to return safely to your spawn point 🔄</p>
<a href="index.html" class="button">Back to Home</a>
</div>
</main>
<footer>
No need to thank me — made with ❤️ by <a href="https://adiee.io" target="_blank">adiee.io</a><br>
Let's be frens? 👉 <a href="https://discord.com/users/555277072675766274" target="_blank">Discord</a>
</footer>
</body>
</html>