-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
44 lines (44 loc) · 1.26 KB
/
404.html
File metadata and controls
44 lines (44 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-adsense-account" content="ca-pub-5166575587547718">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5166575587547718"
crossorigin="anonymous"></script>
<title>Error-404</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.image-container {
position: relative;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
border-radius: 10px;
overflow: visible;
transition: transform 0.3s ease;
width: 1000px;
}
.image-container:hover {
transform: translateY(-10px);
}
img {
display: block;
width: 100%;
height: auto;
}
</style>
</head>
<body>
<div class="image-container">
<a href="/"><img src="404.svg" alt="ERROR-404"></a>
</div>
</body>
</html>