-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimmunity.html
209 lines (181 loc) · 5.46 KB
/
immunity.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Immunity - 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-stanza {
margin-bottom: 2rem;
text-align: left;
white-space: pre-line;
}
.poem-stanza.right {
text-align: right;
}
.poem-image {
max-width: 100%;
height: auto;
margin: 2rem auto;
display: block;
border-radius: 5px;
max-height: 400px;
}
.poem-image-wrapper {
background: #FFF5CC;
padding: 2rem;
margin: 2rem -1rem;
text-align: center;
}
.footer {
text-align: center;
padding: 2rem;
background: #f8f8f8;
color: #444;
margin-top: 4rem;
border-top: 1px solid #ddd;
}
@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">Immunity</h1>
<div class="poem-meta">4 April, 2020 • 1 Min Read</div>
</header>
<div class="poem-content">
<div class="poem-image-wrapper">
<img src="./immunity.jpeg" alt="Immunity" class="poem-image">
</div>
<div class="poem-stanza">
Immunity O Immunity,
It is ultimately your responsibility,
To make us all strong and healthy,
And fight disease utterly deadly.</div>
<div class="poem-stanza right">
Your shape and strength no one knows,
Cause for concern when you are low,
We need your push to get up and go,
And sail through life in its ebb and flow.</div>
<div class="poem-stanza">
Eating healthy all the time,
Morning, Noon and Dinner time.
Fresh fruits and vegetables Nature has given,
Milk and Curd supplied in the kitchen.</div>
<div class="poem-stanza right">
Rising early and going for walk,
Taking out time in between our work,
Shunning cigarettes and unwanted things,
Letting the liquor flow down the sink.</div>
<div class="poem-stanza">
Discharging our duties dot on time,
Retiring to rest sharp at bedtime.
Ready to fight the grit and grime,
And embracing life full time.</div>
<div class="poem-stanza right">
Health is Wealth, the saying goes,
Our cup of life overflows,
We need your protection ever so long,
And thus goes our everlasting song.</div>
</div>
</article>
</main>
<footer class="footer">
<p>Copyright © 2018-2023 Indrani Roychoudhury. All rights Reserved.</p>
</footer>
</body>
</html>