-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
39 lines (39 loc) · 759 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 - Page Not Found</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f5f5f5;
margin-top: 50px;
}
h1 {
font-size: 80px;
color: red;
}
p {
font-size: 20px;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: royalblue;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: darkblue;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Oops! Page Not Found.</p>
<button onclick="window.location.href='index.html'">Go Back Home</button>
</body>
</html>