-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
80 lines (76 loc) · 1.53 KB
/
404.html
File metadata and controls
80 lines (76 loc) · 1.53 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
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
background-color: #333333;
}
.container
{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container h2
{
font-size: 2.8em;
line-height: 2em;
color: #fff;
filter: drop-shadow(1px 1px 8px #fff);
}
.container p
{
color: #fff;
font-size: 1.2em;
}
.container .btn
{
font-weight: bold;
filter: drop-shadow(1px 1px 8px #fff);
width: 170px;
height: 50px;
appearance: none;
outline: none;
border: none;
background-color: #1cb5f0;
color: #fff;
font-size: 18px;
border-radius: 20px;
margin-top: 20px;
}
.btn:hover{
box-shadow: 2px 3px#72ADDE;
}
p{
padding: 20px;
filter: drop-shadow(1px 1px 8px #fff);
}
</style>
<title>404 Error Page</title>
<link rel="icon" type="image/x-icon" href="/error/favicon.ico">
</head>
<body>
<div class="container">
<img src="/error/error.gif" alt="">
<p>Oops! Page not found •́ ‿ ,•̀ </p>
<a href="/index.html">
<button class="btn">HOME</button>
</a>
</div>
</body>
</html>