-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
96 lines (96 loc) · 3.26 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
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
<link rel="stylesheet" href="assets/css/styles.css">
<meta property="og:title" content="Oops!!">
<meta property="og:image" content="https://www.yourjamify.tech/assets/img/standard (1).gif">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Roboto', sans-serif;
background: linear-gradient(135deg, #4b4ef8, #9f42f5); /* Replace with your gradient */
color: #343a40;
text-align: center;
position: relative;
overflow: hidden;
}
.background-art {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="none" stroke="white" stroke-width="2" /><circle cx="50%" cy="50%" r="40%" fill="none" stroke="white" stroke-width="2" /></svg>') no-repeat center center;
background-size: cover;
z-index: 0;
opacity: 0.2;
}
.container {
max-width: 600px;
padding: 40px;
background: #fff;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border-radius: 10px;
animation: fadeIn 1s ease-in-out;
position: relative;
z-index: 1;
}
.banner {
background-color: transparent;
color: #fff;
padding: 20px;
margin-top: 20px;
margin-bottom: 15px;
}
h1 {
font-size: 4em;
margin: 0;
color: #dc3545;
}
p {
font-size: 1.2em;
margin: 20px 0;
}
a {
display: inline-block;
margin-top: 20px;
padding: 12px 24px;
font-size: 1em;
color: #fff;
background-color: #007bff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease, transform 0.3s ease;
}
a:hover {
background-color: #0056b3;
transform: scale(1.05);
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body>
<div class="background-art"></div>
<div class="container">
<h1>404</h1>
<p>Sorry, the page you are looking for does not exist.</p>
<a href="index.html"><i class="fas fa-home"></i> Go to Home</a>
<div class="banner">
<img src="assets/img/Banner.gif" alt="Banner Image" style="border-radius: 0;">
</div>
</div>
</body>
</html>