-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
90 lines (88 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1 "/>
<meta name="robots" content="noindex, nofollow">
<title>404 Error - jQuery Projects</title>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Assistant" rel="stylesheet">
<style>
*{margin: 0; padding:0}
body {
font-family: 'Assistant', sans-serif;
background: #ED213A; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #93291E, #ED213A); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #93291E, #ED213A); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.jp-404,
.jp-404 p{
user-select: none;
-webkit-user-select: none;
color: #fff;
}
.jp-404 p{
padding: 10px;
margin: 20px;
text-align: center;
color: rgba(255, 255, 255, 0.85);
}
.jp-404 h1 {
text-align: center;
}
.jp-404 h1 span {
display: block;
margin: 20px auto;
font-size: 120px;
}
a.back-to-home {
border: 2px solid #fff;
-webkit-tap-highlight-color: transparent;
max-width: 150px;
text-align: center;
border-radius: 10px;
padding: 16px;
display: block;
margin: 25px auto;
color: #fff;
text-decoration: none;
transition: .4s;
font-size: 16px;
-webkit-transition: .4s;
}
a.back-to-home:hover{
background: #fff;
color: #ED213A;
transition: .4s;
-webkit-transition: .4s;
}
.copy-404 {
margin: 25px;
text-align: center;
font-size: 13px;
color: rgba(255, 255, 255, 0.65);
}
.copy-404 a{
text-decoration: none;
color: rgba(255, 255, 255, 0.65);
}
.copy-404 a:hover{
text-decoration: underline;
color: #fff;
}
</style>
</head>
<body>
<section class="jp-404">
<h1><span> 404 </span>
Sorry Page Not Found!
</h1>
<p>
The page you're looking for, doesn't exist. It may have removed or its URL has been changed.
</p>
<a href="https://codehimblog.github.io/" class="back-to-home"><i class="fa fa-home"></i> Back to Home </a>
</section>
<footer class="copy-404">
Copyright © 2023 - <a href="https://codehimblog.github.io/"> Web Projects </a>
</footer>
</body>
</html>