-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path404.html
50 lines (50 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f8f8f8;
}
h1 {
font-size: 3em;
margin: 0.5em 0;
color: #333;
}
p {
font-size: 1.2em;
color: #666;
}
.btn-home {
display: inline-block;
margin-top: 1.5em;
padding: 0.75em 1.5em;
font-size: 1em;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn-home:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Page Not Found</h1>
<p>Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct.</p>
<a href="index.html" class="btn-home">Back To Home</a>
</body>
</html>