-
Notifications
You must be signed in to change notification settings - Fork 0
/
pageNotFound.html
68 lines (62 loc) · 1.73 KB
/
pageNotFound.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #fdd2e7; /* Pale Pink Background */
text-align: center;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
color: #333;
}
.container {
padding: 20px;
}
h1 {
color: #ff66a3; /* Pink Text Color */
font-size: 3em;
margin-bottom: 10px;
}
p {
color: #666;
font-size: 1.2em;
margin-bottom: 20px;
}
img {
width: 300px;
height: 300px;
border-radius: 50%; /* Make the image circular */
background-color: #fdd2e7; /* Set background color to match page background */
margin-bottom: 20px;
}
a {
text-decoration: none;
color: #ff66a3;
font-weight: bold;
font-size: 1.2em;
transition: color 0.3s;
}
a:hover {
color: #ff3385; /* Darker Pink on Hover */
}
</style>
<title>404 - Page Not Found</title>
</head>
<body>
<div class="container">
<img src="/src/sunset.jpeg" alt="Cute Flower Illustration">
<h1>Oops!</h1>
<p>It seems like you've wandered into the wrong garden.</p>
<p>Let's guide you back to the main path:</p>
<a href="/index.html">Go Home</a>
</div>
</body>
</html>