-
Notifications
You must be signed in to change notification settings - Fork 3
/
404.html
49 lines (45 loc) · 899 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
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Error - ALX Student's Contribution</title>
<style>
body {
background-color: #f8f8f8;
font-family: sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
text-align: center;
padding: 100px 0;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 20px;
margin-bottom: 30px;
}
a {
display: inline-block;
padding: 10px 20px;
background-color: #333;
color: #fff;
font-size: 20px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.2s ease-in-out;
}
a:hover {
background-color: #666;
}
</style>
</head>
<body>
<h1>404 Error</h1>
<p>The page you're looking for could not be found.</p>
<a href="/">Go back to home</a>
</body>
</html>