-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLove_and_Joy.html
290 lines (252 loc) · 9.55 KB
/
Love_and_Joy.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To Make You Smile and Cry - A Lyrical Poem</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lora:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
margin: 0;
padding: 20px;
background: radial-gradient(circle, #e3cec7, #f3e9e5);
font-family: 'Lora', serif;
color: #3e2723;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
box-sizing: border-box;
}
.banner {
width: 100%;
height: 200px;
background: url('https://www.example.com/your-cgi-generated-title-image.jpg') no-repeat center center;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
}
.banner h1 {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
color: #ffffff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.content {
width: 90%;
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
text-align: left;
animation: fadeIn 2s ease-in-out, float 6s ease-in-out infinite;
}
h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: #8b5e3c;
text-align: center;
margin-bottom: 20px;
}
.description {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 20px;
color: #5d4037;
}
.description p {
margin: 10px 0;
}
.letter, .poem {
padding: 20px;
margin-bottom: 20px;
border: 2px solid #8b5e3c;
border-radius: 10px;
background: #fefefe;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}
.letter::before, .poem::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(163, 93, 80, 0.2), rgba(128, 66, 53, 0.2));
z-index: -1;
animation: animateFrame 10s linear infinite;
}
@keyframes animateFrame {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(-10px, 10px);
}
50% {
transform: translate(10px, -10px);
}
75% {
transform: translate(-10px, -10px);
}
100% {
transform: translate(10px, 10px);
}
}
p, pre {
font-size: 1.1rem;
line-height: 1.8;
margin: 0.5rem 0;
color: #4e342e;
white-space: pre-wrap;
}
.poem-title {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: #6d4c41;
text-align: center;
margin-bottom: 20px;
}
.stanza {
margin-bottom: 20px;
padding: 10px;
background: #f7e4e0;
border-left: 5px solid #8b5e3c;
border-radius: 5px;
}
.stanza p {
margin: 0;
}
.rhyme {
color: #8b5e3c;
font-weight: bold;
}
footer {
background-color: #3e2723;
color: #ffffff;
padding: 20px;
text-align: center;
font-size: 0.9rem;
border-radius: 10px;
margin-top: 20px;
width: 90%;
max-width: 800px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
footer a {
color: #d4a5a5;
text-decoration: none;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
@media screen and (max-width: 768px) {
.content {
padding: 15px;
}
p, pre {
font-size: 1rem;
}
.banner h1 {
font-size: 3rem;
}
}
@media screen and (max-width: 480px) {
p, pre {
font-size: 0.9rem;
}
.banner h1 {
font-size: 2.5rem;
}
}
</style>
</head>
<body>
<!-- Banner with CGI Title Graphic -->
<div class="banner">
<h1>To Make You Smile and Cry</h1>
</div>
<!-- Content Container -->
<div class="content">
<h2>"A Mother's Love"</h2>
<div class="description">
<p>This page contains a **lyrical poem** titled "A Mother's Love," reflecting personal emotions and admiration towards a mother and her child. The poem is structured in quatrains, with a consistent rhyme scheme of AABB, reflecting the gentle and supportive tone of the poem.</p>
<p>The stanzas are visually highlighted, and the rhyming words are emphasized to help you better appreciate the structure and flow of the poem. Additionally, the letter preceding the poem conveys heartfelt admiration and support.</p>
</div>
<!-- Letter Section -->
<div class="letter">
<pre>
Dear Miss Stewart,
I wanted to take a moment to express my heartfelt admiration for you and your son, Juke. You are an extraordinary woman and an inspiration to those around you. Your strength, resilience, and devotion to your child are truly remarkable.
As a mother, you are a shining example of courage, determination, and unwavering love. Juke is incredibly fortunate to have you in his life, and I have no doubt that he will grow and thrive under your guidance.
Please know that you have a support system that believes in you and is rooting for your success. Even in challenging times, remember that you are not alone. You have our love, appreciation, and admiration for all that you do.
With love and appreciation,
Mr. Matthee
</pre>
</div>
<!-- Poem Section -->
<div class="poem">
<div class="poem-title">A Mother's Love</div>
<div class="stanza">
<p>The sky is brushed with dawn's soft <span class="rhyme">hues</span>,</p>
<p>A canvas where the stars <span class="rhyme">withdrew</span>.</p>
<p>In quiet hours, your strength takes <span class="rhyme">flight</span>,</p>
<p>A beacon born from morning's <span class="rhyme">light</span>.</p>
</div>
<div class="stanza">
<p>Your journey, Miss Stewart, a tale of <span class="rhyme">grace</span>,</p>
<p>Each step, a dawn you boldly <span class="rhyme">face</span>.</p>
<p>In Juke's eyes, your spirit <span class="rhyme">gleams</span>,</p>
<p>A hero's heart in childhood <span class="rhyme">dreams</span>.</p>
</div>
<div class="stanza">
<p>Through tempests wild, your will holds <span class="rhyme">fast</span>,</p>
<p>A love so strong, it ever <span class="rhyme">lasts</span>.</p>
<p>In your embrace, the world <span class="rhyme">unfolds</span>,</p>
<p>Where dreams take wing, and courage <span class="rhyme">molds</span>.</p>
</div>
<div class="stanza">
<p>You are the note in a symphony's <span class="rhyme">rise</span>,</p>
<p>A testament to the strength in your <span class="rhyme">eyes</span>.</p>
<p>Your love, a river that endlessly <span class="rhyme">flows</span>,</p>
<p>In Juke's life, your legacy <span class="rhyme">grows</span>.</p>
</div>
<div class="stanza">
<p>So when the nights are cold and <span class="rhyme">long</span>,</p>
<p>Remember, dear, you are the <span class="rhyme">song</span>.</p>
<p>With every dawn, hope finds its <span class="rhyme">way</span>,</p>
<p>In the love you give, in the light of <span class="rhyme">day</span>.</p>
</div>
<p style="text-align: center; margin-top: 20px;"><strong>With love and admiration,</strong><br>Mr. Matthee</p>
</div>
</div>
<!-- Footer Section -->
<footer>
<p>© 2024 Raydo Matthee. All rights reserved.</p>
<p>Author: Raydo Matthee | <a href="mailto:[email protected]">[email protected]</a></p>
<p>Disclosure: This content is for informational and educational purposes only.</p>
<p>Disclaimer: The views expressed are the author’s own and do not constitute professional advice.</p>
</footer>
</body>
</html>