-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
50 lines (46 loc) · 1.11 KB
/
404.html
File metadata and controls
50 lines (46 loc) · 1.11 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
text-align: center;
}
img {
max-width: 100%;
max-height: 80vh;
}
h1 {
margin-top: 20px;
font-size: 2rem;
color: #555;
}
a {
margin-top: 10px;
display: inline-block;
font-size: 1.2rem;
color: #007acc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div>
<img src="data/cdn/404.png" alt="404 Image">
<h1>404 - Page Not Found</h1>
<a href="index.html">Go back to the homepage</a>
</div>
</body>
</html>