-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
54 lines (48 loc) · 1.1 KB
/
404.html
File metadata and controls
54 lines (48 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>404 - Page Not Found</title>
<style>
@font-face {
font-family: 'norwester';
src: url('./norwester.otf'),
}
body {
background-color: #000000;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: norwester, sans-serif;
}
.container {
text-align: center;
}
.logo {
max-width: 200px;
margin-bottom: 20px;
}
a {
color: #00ffff;
}
h1 {
font-size: 24px;
margin: 0;
color: #c0c0c0;
}
p {
font-size: 18px;
color: #c2c2c2;
}
</style>
</head>
<body>
<div class="container">
<img src="Square.png" alt="Logo" class="logo">
<h1>404 - Page Not Found</h1>
<p>Hi, I think you are on the wrong side of the wall!</p>
<a href="https:////discord.gg/pjkt">Need a hand?</a>
</div>
</body>
</html>