-
Notifications
You must be signed in to change notification settings - Fork 594
/
404.html
43 lines (42 loc) · 1.27 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<title>Error Page not found</title>
</head>
<body>
<style>
button{
padding: 1rem 1.5rem;
background-color: #009e30;
color: #fff;
border: solid 1px #009e30;
cursor:pointer;
}
a:link, a:visited{
text-decoration:none;
color: #fff;
}
.box{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
</style>
<div class="box">
<div>
<lottie-player src="https://lottie.host/d255520b-69e6-4038-9c0d-dd0fea22ff34/cEkKelgU4A.json" background="##FFFFFF" speed="1" style="width: 300px; height: 300px" loop autoplay direction="1" mode="normal"></lottie-player>
</div>
<button onclick="f()">Home</button>
</div>
<script>
function f(){
window.location.href="./index.html";
}
</script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
</body>
</html>