-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
78 lines (69 loc) · 2.69 KB
/
404.html
File metadata and controls
78 lines (69 loc) · 2.69 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Page Not Found</title>
<link rel="icon" href="https://rb.gy/meegx" />
<link href="https://fonts.googleapis.com/css2?family=Intro+Rust&family=Josefin+Sans&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<style>
body {
background-color: #ecece5;
}
.heading {
font-family: "Intro Rust", sans-serif;
font-weight: bold !important;
}
.subheading {
font-family: "Josefin Sans", sans-serif;
font-weight: bold !important;
}
.button {
border-color: #1f1d36;
color: #1f1d36;
font-family: "Intro Rust", sans-serif;
font-size: 1rem;
border-width: 3px;
}
.button:hover {
background-color: #fcbe2e;
color: #000000;
border-color: #1f1d36;
border-width: 3px;
}
#homeButton {
width: 30%;
}
</style>
</head>
<body>
<div class="container-fluid" style="height: 50vh;">
<!-- Text -->
<div class="row h-50 d-flex justify-content-center align-items-center">
<div class="col text-center">
<h1 class="heading mt-4 animate__animated animate__zoomIn animate__slower">OOPS! PAGE NOT FOUND</h1>
<p class="subheading animate__animated animate__zoomIn animate__slower">Looks like the page you're looking for doesn't exist or may have been moved.</p>
</div>
</div>
<!-- Image -->
<div class="row h-10 d-flex justify-content-center align-items-center">
<div class="col text-center animate__animated animate__zoomIn animate__slower">
<img src="/images/404.png" class="img-fluid" width="500" height="500" alt="404: Page Not Found">
</div>
</div>
<!-- Button -->
<div class="row h-10 d-flex justify-content-center align-items-center">
<div class="col text-center">
<a href="/index.html">
<button type="button" class="btn btn-outline-info button fw-bold animate__animated animate__zoomIn animate__slower">
HOME
</button>
</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>