This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy path404.html
53 lines (48 loc) · 1.49 KB
/
404.html
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
<html>
<head>
<title>Error 404 | Error</title>
<link rel="icon" type="image/x-icon" href="./media/favicons/skyhax.png">
<style>
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+Infant:wght@400;700&display=swap');
html,
body {
height: 100%;
margin: 0;
padding: 0;
background-color: #1f1e1e;
font-family: 'Ysabeau Infant', sans-serif;
overflow: hidden;
display: flex;
text-align: center;
justify-content: center;
color: white;
align-items: center;
background-image: url('./media/index/404.png');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.noflex {
display: block;
}
</style>
<link rel="stylesheet" href="./lib/styles/index.css" />
</head>
<body>
<div class="noflex">
<h1>404 ERROR</h1>
<p>Whoa! Oh wait, nevermind, this page doesn't exist. Why don't you explore some of our other options instead of tryna
find secret pages?</p>
<a href="./index.html">
<button class="btn" role="button">Go back home</button>
</a>
<a href="./directories/duckos.html">
<button class="btn" role="button" target="_blank">Check out DuckOS</button>
</a>
<a href="https://dsc.gg/skyhax">
<button class="btn" role="button" target="_blank">Join our Discord Server</button>
</a>
</div>
<script src="./lib/scripts/init.js"></script>
</body>
</html>