-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
38 lines (38 loc) · 1.07 KB
/
Copy path404.html
File metadata and controls
38 lines (38 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
<style>
body {
font-family: 'Roboto', sans-serif;
font-size: 16px;
background-color: #f3f3f3;
}
#container {
width: 800px;
margin: 0 auto;
}
.error-code {
font-size: 300px;
font-weight: bold;
color: #2c3e50;
}
.error-message {
font-size: 30px;
font-weight: bold;
color: #2c3e50;
}
.error-description {
font-size: 16px;
color: #7f8c8d;
}
</style>
</head>
<body>
<div id="container">
<div class="error-code">404</div>
<div class="error-message">Page Not Found</div>
<div class="error-description">We're sorry, but the page you are looking for doesn't exist.</div>
</div>
</body>
</html>