-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 loc) · 1.76 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Epic 404 page by BopV2</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'border': '#737373',
},
}
}
}
</script>
</head>
<body>
<div class="w-screen h-screen bg-slate-200 justify-center flex place-items-center">
<div class="bg-white justify-center flex flex-col place-items-center drop-shadow-2xl rounded-[8px] w-[500px] h-[300px] border border-solid border-border">
<div class="flex flex-row">
<h1 class="flex-shrink mx-4 text-[50px] font-mono">404</h1>
</div>
<div class="flex flex-row">
<h1 class="flex-shrink mx-4 text-[20px] font-display">The URL you were looking for doesnt exist!</h1>
</div>
<div class="flex flex-row">
<button onclick="reverse();" class="bg-blue-200 rounded-[8px] w-[390px] h-[30px] hover:bg-blue-100 hover:border border-solid border-border">Go back</button>
</div>
<!-- REMOVE THIS -->
<div class="fex flex-row">
<a href="https://github.com/bopv2" class="hover:text-slate-700 text-[30px] hover:cursor-pointer"><i class="bi bi-github"></i></a>
<a href="https://paypal.me/bopv2" class="hover:text-slate-700 text-[30px] hover:cursor-pointer"><i class="bi bi-paypal"></i></a>
</div>
<!-- REMOVE THIS -->
</div>
</div>
<script>
function reverse() {
history.back();
}
</script>
</body>
</html>