-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlove.html
More file actions
90 lines (87 loc) · 2.75 KB
/
love.html
File metadata and controls
90 lines (87 loc) · 2.75 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Love & Care Corner</title>
<style>
.content {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
text-align: center;
}
.content h1 {
font-size: 36px;
color: #ffcc70;
margin-bottom: 20px;
}
.content p {
font-size: 18px;
line-height: 1.6;
color: #ffffff;
}
.content img {
width: 100%;
max-width: 400px;
margin: 20px auto;
border-radius: 10px;
box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.7);
transform: scale(1.05);
}
.image-caption {
font-size: 16px;
color: #ffcc70;
margin-top: 10px;
font-style: italic;
}
.back-link {
display: inline-block;
margin-top: 20px;
color: #ff758c;
text-decoration: none;
font-size: 18px;
transition: color 0.3s ease;
}
.back-link:hover {
color: #ffcc70;
}
/* Media Query for Small Screens */
@media (max-width: 600px) {
.content {
padding: 15px;
}
.content h1 {
font-size: 28px; /* Reduce font size for smaller screens */
}
.content p {
font-size: 16px; /* Adjust paragraph font size */
}
.content img {
max-width: 100%; /* Ensure the image fits within the screen */
margin: 15px auto;
}
.image-caption {
font-size: 14px; /* Adjust caption font size */
}
.back-link {
font-size: 16px; /* Adjust link font size */
}
}
</style>
</head>
<body>
<div class="content">
<h1>Love & Care Corner ❤️</h1>
<p>Experience the warmth of love and care through stories that touch your soul. Let your heart be filled with joy and compassion.</p>
<!-- Add the image -->
<img src="love1.jpg" alt="Love and Care Image">
<div class="image-caption">"A moment of love and care captured beautifully."</div>
<a href="index.html" class="back-link">← Back to Home</a>
</div>
</body>
</html>