-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueen.html
223 lines (193 loc) · 5.66 KB
/
queen.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Queen - Creative Expressions</title>
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Titillium Web', sans-serif;
line-height: 1.6;
color: #c62641;
background: #f8f8f8;
}
.header {
background-color: #c62641;
color: white;
padding: 1rem;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.nav-links {
list-style: none;
display: flex;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
}
.main {
max-width: 800px;
margin: 8rem auto 2rem;
padding: 0 1rem;
background: white;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
border-radius: 5px;
}
.poem-header {
text-align: center;
padding: 2rem 0;
border-bottom: 1px solid rgba(198,38,65,0.2);
}
.poem-title {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #c62641;
text-transform: uppercase;
}
.poem-meta {
color: #444;
font-size: 0.9rem;
}
.poem-content {
padding: 2rem;
line-height: 2;
background: #FFF5CC;
}
.poem-intro {
margin-bottom: 2rem;
color: #444444;
font-style: italic;
}
.poem-stanza {
margin-bottom: 2rem;
text-align: left;
white-space: pre-line;
}
.poem-stanza.right {
text-align: right;
}
.poem-image {
max-width: 80%;
height: auto;
margin: 2rem auto;
display: block;
border-radius: 5px;
}
.poem-image-wrapper {
background: #FFF5CC;
padding: 2rem;
margin: 2rem -1rem;
}
.image-caption {
text-align: center;
color: #666;
margin-top: 1rem;
font-style: italic;
font-size: 0.9rem;
}
.footer {
text-align: center;
padding: 2rem;
background: #f8f8f8;
color: #444;
margin-top: 4rem;
border-top: 1px solid #ddd;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
.nav {
flex-direction: column;
gap: 1rem;
padding: 1rem;
}
.main {
margin-top: 10rem;
}
.poem-content {
padding: 1rem;
}
.poem-title {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header class="header">
<nav class="nav">
<h1>Creative Expressions</h1>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="main">
<article>
<header class="poem-header">
<h1 class="poem-title">Queen</h1>
<div class="poem-meta">18 September, 2021 • 1 Min Read</div>
</header>
<div class="poem-content">
<div class="poem-image-wrapper">
<img src="./queen.jpeg" alt="Queen portrait" class="poem-image">
<div class="image-caption">Picture sketched by me</div>
</div>
<div class="poem-stanza">
She is The Queen,
Who reigns in all hearts,
Spreading love and joy,
From wherever she starts.</div>
<div class="poem-stanza right">
She is The Queen,
A Queen of my dreams,
Driving me forth,
To excel in everything.</div>
<div class="poem-stanza">
She is The Dancing Queen,
Makes you feel young and trim,
Come on, tap your kissing feet,
And swirl around as a united team.</div>
<div class="poem-stanza right">
She is The Melody Queen,
Humming tunes soft and sweet,
Creating a musical and joyous mood,
To sing forever with blues removed.</div>
<div class="poem-stanza">
Capturing her in my mind,
A joyful state I do find,
It enables me to cook dishes,
Exactly as my family wishes.</div>
<div class="poem-stanza right">
I love this lady so much,
Drew her portrait with a magical touch,
Adorned her in exotic jewellery,
To create for her a special identity.</div>
</div>
</article>
</main>
<footer class="footer">
<p>Copyright © 2018-2023 Indrani Roychoudhury. All rights Reserved.</p>
</footer>
</body>
</html>