This repository has been archived by the owner on Jan 14, 2024. It is now read-only.
forked from dandanthedev/is-a.dev-webserver
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
56 lines (55 loc) · 1.66 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
54
55
56
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Site not Found</title>
<script src="https://cdn.tailwindcss.com"></script>
<link
href="https://api.fonts.coollabs.io/css2?family=VT323&display=swap"
rel="stylesheet"
/>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<style>
.vt323 {
font-family: "VT323", monospace;
}
.bg {
background-color: #0f0c19;
}
</style>
</head>
<body
class="bg text-white text-center vt323 text-4xl flex flex-col justify-center items-center h-screen"
>
<img
src="https://raw.githubusercontent.com/is-a-dev/register/4c8cd44942205ccda6b6c7ecdc2974b110f39615/media/logo.png"
class="fixed top-0 left-0"
width="100px"
height="100px"
/>
<span id="typehere" class="display-inline-block">
<noscript> This page was not found. </noscript>
</span>
</body>
<script>
var typed = new Typed("#typehere", {
strings: [
"Whoops, that page wasn't found.",
"The page you're looking for doesn't exist.",
"The page you're looking for might have been removed.",
"Who knows what happened to it.",
"We're sorry, but we can't find the page you're looking for.",
"Please try again later.",
"Don't worry, our team is working on it.",
"(not really)",
"We're not sure what happened.",
"We're having some trouble.",
],
typeSpeed: 50,
//disable cursor
showCursor: false,
//loop
loop: true,
});
</script>
</html>