-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.html
49 lines (45 loc) · 1.24 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
44
45
46
47
48
49
<!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>
<style>
body {
background-color: #1f1f1f;
color: #ffffff;
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 3em;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
a {
color: #ffffff;
text-decoration: none;
border-bottom: 1px dashed #ffffff;
transition: border-bottom 0.3s ease;
}
a:hover {
border-bottom: 1px solid #ffffff;
}
</style>
</head>
<body>
<h1>404 - Page Not Found</h1>
<p>The page you are looking for might have been removed or is temporarily unavailable.</p>
<p>Go back to <a href="/">Homepage</a>.</p>
</body>
</html>