-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
44 lines (44 loc) · 961 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 Page Not Found</title>
</head>
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
<link rel="stylesheet" href="/assets/style.css">
<header>
<a href="/"><img src="/images/logo.png" alt="Logo"></a>
</header>
<div class="error">
<div class="padding-nojs">
<h2>404 Page Not Found</h2>
<p>The page you are looking for does not exist! <a href="/">Go Home</a></p>
</div>
</div>
<style>
header {
text-align: left;
margin: 0 auto;
width: 400px;
}
header img {
border: 2.5px solid transparent;
}
header img:hover{
border: 2.5px solid navy;
border-radius: 2px;
}
.error {
text-align: left;
margin: 0 auto;
width: 400px;
background-color: lightcyan;
padding: 8px;
border-radius: 4px;
}
.error h2 {
color: red;
}
</style>
</body>
</html>