-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
69 lines (56 loc) · 1.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Ram Lmn" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Page not found</title>
<style>
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
background: #fafafa;
font-family: Helvetica, sans-serif, Arial;
font-size: 16px;
line-height: 1.5;
color: #404040;
}
a {
text-decoration: none;
color: #08c;
}
a:hover {
text-decoration: underline;
}
.container {
margin: 0 auto;
padding: 16px;
text-align: center;
}
.error-code {
font-size: 8em;
font-weight: bold;
color: #616161;
}
.error-text {
font-size: 2em;
}
</style>
</head>
<body>
<div class="container">
<div class="error">
<div class="error-code">404</div>
<div class="error-text">Page not found</div>
<div class="error-description">
<div>This is not the webpage you are looking for!</div>
<div><a href="https://ramlmn.github.io/">https://ramlmn.github.io</a></div>
</div>
</div>
</div>
</body>
</html>