-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
64 lines (63 loc) · 1.33 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
<html>
<head>
<meta charset="utf-8">
<title>This Page Not Found!</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>404 Error!</title>
<meta name="description" content="ops this page don't Found">
<!-- Page icon -->
<link rel="shortcut icon" href="https://res.cloudinary.com/cegalvarez/image/upload/c_scale,w_48/v1479745739/logo_qvnjq5.ico" type="image/x-icon">
</head>
<body>
<style>
@media only screen and (max-width: 600px) {
section
{
background-image: url("images/404-mobile.jpg")!important;
}
}
body
{
text-align:center;
}
section
{
background-image: url("images/404.jpg");
background-repeat: no-repeat;
background-origin: content-box;
background-position: center;
width: 100%;
height: 720px;
}
h1
{
font-size: 45px!important;
color: #273238!important;
font-weight: 700 !important;
position: absolute;
left: 0;
right: 0;
bottom: 20%;
margin: 0 auto;
font-family: nunito;
padding: 20px;
}
p
{
font-size: 25px!important;
color: #273238!important;
position: absolute;
left: 0;
right: 0;
bottom: 10%;
margin: 0 auto;
font-family: nunito;
padding: 20px;
}
</style>
<section>
<h1>Page not found</h1>
<p>We couldn't find what you were looking for.</p>
</section>
</body>
</html>