-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.html
48 lines (48 loc) · 1.1 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
<!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>
/* Add CSS styles here */
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
.container {
max-width: 400px;
margin: 40px auto;
text-align: center;
}
.error-code {
font-size: 48px;
font-weight: bold;
color: #333;
}
.error-message {
font-size: 24px;
color: #666;
}
.btn {
background-color: #337ab7;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.btn:hover {
background-color: #23527c;
}
</style>
</head>
<body>
<div class="container">
<h1 class="error-code">404</h1>
<p class="error-message">Oops, it looks like the page you're looking for doesn't exist.</p>
<p>Try checking the URL or searching for what you're looking for.</p>
<button class="btn" onclick="history.back()">Go Back</button>
</div>
</body>
</html>