Skip to content

Commit 55562d6

Browse files
authored
Update 404.html
1 parent b00d3c2 commit 55562d6

File tree

1 file changed

+43
-23
lines changed

1 file changed

+43
-23
lines changed

404.html

Lines changed: 43 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,52 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
3+
34
<head>
4-
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>The page you are requested is not available!!</title>
8+
<link rel="icon" href="favicon.ico" type="image/png"/>
9+
<style>
10+
body {
11+
font-family: Arial, sans-serif;
12+
background-color: #f0f5f9; /* Light theme background color */
13+
color: #333333; /* Light theme text color */
14+
margin: 0;
15+
padding: 0;
16+
display: flex;
17+
justify-content: center;
18+
align-items: center;
19+
min-height: 100vh;
20+
text-align: center;
21+
}
722

8-
<title>The page you are requested is not available!!</title>
23+
.container {
24+
background-color: #ffffff; /* Light theme profile background color */
25+
padding: 30px;
26+
border-radius: 8px;
27+
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
28+
max-width: 600px;
29+
width: 100%;
30+
}
931

10-
<link rel="icon" href="favicon.ico" type="image/png" />
32+
@media (prefers-color-scheme: dark) {
33+
body {
34+
background-color: #1e1e1e; /* Dark theme background color */
35+
color: #f0f0f0; /* Dark theme text color */
36+
}
1137

12-
<link href="https://fonts.googleapis.com/css?family=Reem+Kufi|Roboto:300" rel="stylesheet">
13-
<link href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" rel="stylesheet">
14-
<link rel="stylesheet" href="css/reset.css">
15-
<link rel="stylesheet" href="css/styles.css">
16-
<link rel="stylesheet" href="css/themes/indigo-white.css">
17-
<!-- <link rel="stylesheet" href="css/themes/green-white.css"> -->
18-
<!-- <link rel="stylesheet" href="css/themes/red-white.css"> -->
19-
<!-- <link rel="stylesheet" href="css/themes/grey-white.css"> -->
20-
<!-- <link rel="stylesheet" href="css/themes/white-indigo.css"> -->
21-
<!-- <link rel="stylesheet" href="css/themes/white-blue.css"> -->
22-
<!-- <link rel="stylesheet" href="css/themes/white-grey.css"> -->
23-
<!-- <link rel="stylesheet" href="css/themes/white-red.css"> -->
24-
<!-- <link rel="stylesheet" href="css/themes/yellow-black.css"> -->
38+
.container {
39+
background-color: #212121; /* Dark theme profile background color */
40+
}
41+
}
42+
</style>
2543
</head>
44+
2645
<body>
27-
<main>
28-
<div class="tagline"><i class="fas fa-feather-alt"></i> The page you are requested is not available!!</div>
29-
<!-- Find your icons from here - https://fontawesome.com/icons?d=gallery&s=brands -->
30-
</main>
46+
<div class="container">
47+
<h1>Not Found!</h1>
48+
<p>The page you are requesting is not available.</p>
49+
</div>
3150
</body>
51+
3252
</html>

0 commit comments

Comments
 (0)