-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
74 lines (68 loc) · 1.89 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
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
<!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>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
background-color: #131b24;
margin: 0;
padding: 0;
color: #ecf0f1;
line-height: 1.6;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #1f2c38;
transition: background-color 0.3s ease;
border-radius: 10px;
}
h1 {
text-align: center;
color: #ecf0f1;
font-weight: 700;
margin-bottom: 20px;
}
h2 {
font-weight: 400;
margin-bottom: 20px;
color: #ecf0f1;
}
.go-back-link {
display: block;
padding: 15px;
background-color: #2c3e50;
border: 1px solid #7f8c8d;
text-decoration: none;
color: #ecf0f1;
transition: background-color 0.3s ease, transform 0.3s ease;
border-radius: 5px;
text-align: center;
margin-top: 20px;
}
.go-back-link:hover {
background-color: #34495e;
transform: scale(1.02);
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>Page Not Found</h2>
<a href="javascript:history.back()" class="go-back-link">Go Back</a>
</div>
</body>
</html>