forked from OSCode-Community/OSCodeCommunitySite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404Error.html
42 lines (39 loc) · 1.77 KB
/
404Error.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error Page</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.6.5/flowbite.min.css" rel="stylesheet" />
<style>
* {
height: 100%;
}
</style>
</head>
<body>
<div class="bg-indigo-900 overflow-hidden h-screen">
<img src="https://external-preview.redd.it/4MddL-315mp40uH18BgGL2-5b6NIPHcDMBSWuN11ynM.jpg?width=960&crop=smart&auto=webp&s=b98d54a43b3dac555df398588a2c791e0f3076d9"
class="fixed h-full w-full object-cover" />
<div class="inset-0 bg-black opacity-25 absolute">
</div>
<div class="container mx-auto px-6 md:px-12 relative z-10 flex items-center py-32 xl:py-40">
<div class="w-full font-mono flex flex-col items-center relative z-10">
<h1 class="font-extrabold text-5xl text-center text-white leading-tight mt-4">
You are all alone here
</h1>
<p class="font-extrabold text-8xl my-44 text-white animate-bounce">
404
</p>
<a href="index.html" class="btn btn-primary">Go Home</a>
</div>
</div>
</div>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.6.5/flowbite.min.js"></script>
</body>
</html>