-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
39 lines (39 loc) · 951 Bytes
/
Copy path404.html
File metadata and controls
39 lines (39 loc) · 951 Bytes
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>
<head>
<title>Oops! Not found</title>
<meta name="viewport" content="width=device-width">
<style type="text/css">
body{
background-color: #f5f8f9
}
#error p {
margin-left: 43%;
color: rgba(0, 0, 0, 0.4);
font-size: 80px;
font-family: "Century Gothic", "Helvetica", sans-serif;
text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}
#info {
margin-left: 35%;
}
#info p {
color: rgba(0, 0, 0, 0.4);
}
#info a {
margin-left: 10%;
color: rgba(21, 55, 236, 0.8);
text-decoration: none;
}
</style>
</head>
<body>
<div id="error">
<p>404</p>
</div>
<div id="info">
<p>Oops! The page you requested not found</p>
<a href="http://c0defreak.github.io">Back to hompage</a>
</div>
</body>
</html>