-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
52 lines (48 loc) · 2.14 KB
/
404.html
File metadata and controls
52 lines (48 loc) · 2.14 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
<!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>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="error-page">
<section class="d-flex align-items-center min-vh-100 py-5">
<div class="container py-5">
<div class="row align-items-center">
<div class="col-md-6 order-md-2">
<div class="lc-block">
<script src="https://unpkg.com/@dotlottie/player-component@2.7.12/dist/dotlottie-player.mjs"
type="module"></script>
<dotlottie-player
src="https://lottie.host/fdfbac9d-bdcc-402f-b3da-7ce6a6445221/DsSTjLlmFX.lottie"
background="transparent" speed="1" style="width: 600px; height: 600px" loop
autoplay></dotlottie-player>
</div>
</div>
<div class="col-md-6 text-center text-md-start ">
<div class="lc-block mb-3">
<div editable="rich">
</div>
</div>
<div class="lc-block mb-3">
<div editable="rich">
<h1 class="display-1 fw-bold text-success">Error 404</h1>
</div>
</div>
<div class="lc-block mb-5">
<div editable="rich">
<p class="rfs-11 fw-bold text-success"> The page you are looking for was moved, removed or
might never
existed.</p>
</div>
</div>
<div class="lc-block">
<a class="btn btn-lg btn-success" href="index.html" role="button">Back to homepage</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>