-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
45 lines (45 loc) · 1.31 KB
/
Copy path404.html
File metadata and controls
45 lines (45 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 Page Not Found</title>
<script
src="https://unpkg.com/@dotlottie/player-component@2.7.12/dist/dotlottie-player.mjs"
type="module"
></script>
</head>
<body>
<div
style="
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
"
>
<div style="height: 500px; width: 500px; overflow: hidden">
<dotlottie-player
src="https://lottie.host/8f76f82c-a398-45a8-b9bf-54fab61c0a3c/WQqJWxhqmq.lottie"
background="transparent"
speed="1"
style="height: 500px; width: 500px"
loop
autoplay
></dotlottie-player>
</div>
<div>
<h1 style="text-align: center; font-size: 2rem; color: #333">
404 Page Not Found
</h1>
<p style="text-align: center; font-size: 1.2rem; color: #666">
The page you are looking for does not exist.
</p>
<p style="text-align: center; font-size: 1.2rem; color: #666">
Please check the URL or return to the
<a href="/index.html">home page</a>.
</p>
</div>
</div>
</body>
</html>