-
Notifications
You must be signed in to change notification settings - Fork 21
/
protect.html
431 lines (381 loc) · 16.7 KB
/
protect.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width-device=width,initial-scale=1.0">
<meta charset="utf-8">
<title>Protect And Awarness</title>
<!------font awesome----->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<style>
body
{
margin: 50px;
padding: 25;
font-size: 16px;
background-position: center;
background-color: rgb(243, 248, 251);
color: rgb(0, 0, 0);
background-image: linear-gradient(to right,
rgba(194, 202, 222, 0.9) 65%,
rgba(44, 44, 215, 0.781) 10%,
rgba(169, 166, 192, 0.9) 85%);
-webkit-animation: 4s linear 0s infinite alternate move_eye;
animation: 4s linear 0s infinite alternate move_eye;
}
.protect{
display: block;
text-align: center;
}
.box h1{
text-align: center;
}
.btn{
display: inline-block;
margin-top: 0.5rem;
padding:0.5rem 3rem;
border-radius: 5rem;
background:var(--red);
color:#fff;
background-color: rgba(148, 160, 223, 0.9) ;
overflow: hidden;
position: relative;
z-index: 0;
font-size: 1.3rem;
text-decoration: none;
}
.btn::before{
content:'';
position: absolute;
top: 0; left: 0;
height: 100%;
width: 100%;
z-index: -1;
background:rgb(34, 20, 160);
clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
transition:.3s linear;}
.btn:hover::before{
clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.head{
text-decoration: none;
text-align: center;
font-size: 40px;
}
span{
background-color: rgb(191, 215, 228);
color: rgb(0, 0, 0);
background-image: linear-gradient(to right,
rgba(148, 160, 223, 0.9) 25%,
rgba(149, 149, 190, 0.781) 50%,
rgba(200, 193, 236, 0.9) 75%);
-webkit-animation: 4s linear 0s infinite alternate move_eye;
animation: 4s linear 0s infinite alternate move_eye;
}
/*----------------faq--------------*/
.faq .container{
width:100%;
display: flex;
align-items: center;
justify-content: center;
}
.faq .row{
align-items: center;
display: block;
width: 70%;
}
.faq-header{
display: flex;
border-bottom: 2px solid #3b5998;
align-items: center;
position: relative;
cursor: pointer;
}
.faq-header .open ,.faq-header .close{
position: absolute;
right: -10px;
padding: 0px 7px;
font-size: 22px;
font-weight: bold;
transform: translateY(-6px);
opacity: 0;
transition: all 500ms;
}
.faq-header .open.active ,.faq-header .close.active{
opacity: 1;
transform: translateY(0);
}
.faq-header h5{
font-size: 17px;
padding: 6px 3px;
margin-right: 2px;
}
.content{
display: none;
font-size: 14px;
padding: 5px 20px;
line-height: 2;
max-height: 0;
overflow: hidden;
transition: all 500ms;
}
.content.active {
max-height: 90%;
display: block;
position: relative;
}
@media (max-width:682px){
html{
font-size: 75%;
}
.faq .container{
width: 100%;
}
}
@media (max-width:800px){
.head{
font-size: 20px;
height: 100%;
width:100%;
border-top: .2rem solid rgba(0,0,0,.1);
}
.btn{
display: inline-block;
margin-top: 0.5rem;
padding:0.5rem 1.5rem;
border-radius: 5rem;
background:var(--red);
color:#fff;
background-color: rgba(148, 160, 223, 0.9) ;
overflow: hidden;
position: relative;
z-index: 0;
font-size: 0.5rem;
text-decoration: none;
}
.awarness{
text-overflow: hidden;
font-size: 75%;
}
.img{
width: 50%;
position: relative;
}
.heading {
text-align: center;
font-size: 75%;
}
body{
margin: 50px;
padding: 25;
background-position: center;
background-repeat: none;
background-color: rgb(243, 248, 251);
color: rgb(0, 0, 0);
background-image: linear-gradient(to right,
rgba(194, 202, 222, 0.9) 65%,
rgba(44, 44, 215, 0.781) 10%,
rgba(169, 166, 192, 0.9) 85%);
-webkit-animation: 4s linear 0s infinite alternate move_eye;
animation: 4s linear 0s infinite alternate move_eye;
}
.faq .row{
align-items: center;
display: block;
width: 100%;
}
@media (max-width:500px){
html{
font-size: 50%;
}
section{
padding:0 3%;
padding-top: 9rem;
}
.faq .row{
align-items: center;
display: block;
width: 100%;
}
}
}
</style>
</head>
<body>
<section class="container" id="container">
<div>
<a href="index.html" class="btn">Back</a>
</div>
<div class="head">
<h1><span>Protect Yourself From Covid-19</span></h1>
</div>
</section>
<section class="awarness" id="awarness">
<div class="box">
<ul>
<li>
<p><b><span>How to make your environment safer</b></p>
<b>
Avoid the 3Cs: spaces that are closed, crowded or involve close contact.
Outbreaks have been reported in restaurants, choir practices, fitness classes, nightclubs, offices and places of worship where people have gathered, often in crowded indoor settings where they talk loudly, shout, breathe heavily or sing.
The risks of getting COVID-19 are higher in crowded and inadequately ventilated spaces where infected people spend long periods of time together in close proximity. These environments are where the virus appears to spread by respiratory droplets or aerosols more efficiently, so taking precautions is even more important.
Meet people outside. Outdoor gatherings are safer than indoor ones, particularly if indoor spaces are small and without outdoor air coming in.
For more information on how to hold events like family gatherings, children’s football games and family occasions, read our Q&A; on small public gatherings.
Avoid crowded or indoor settings but if you can’t, then take precautions:
Open a window. Increase the amount of ‘natural ventilation’ when indoors.
WHO has published Q&A; on ventilation and air conditioning for both the general public and people who manage public spaces and buildings.
Wear a mask
<br>
<br>
<br>
<li>
<p><b><span>Dont forget the basics of hyginene</span></b></p>
<b>
Regularly and thoroughly clean your hands with an alcohol-based hand rub or wash them with soap and water. This eliminates germs including viruses that may be on your hands.
Avoid touching your eyes, nose and mouth. Hands touch many surfaces and can pick up viruses. Once contaminated, hands can transfer the virus to your eyes, nose or mouth. From there, the virus can enter your body and infect you.
Cover your mouth and nose with your bent elbow or tissue when you cough or sneeze. Then dispose of the used tissue immediately into a closed bin and wash your hands. By following good ‘respiratory hygiene’, you protect the people around you from viruses, which cause colds, flu and COVID-19.
Clean and disinfect surfaces frequently especially those which are regularly touched, such as door handles, faucets and phone screens.</b>
</li>
<br>
<br>
<br>
<li>
<p><b><span>What to do if you feel unwell</span></b></p>
<b> Know the full range of symptoms of COVID-19. The most common symptoms of COVID-19 are fever, dry cough, and tiredness. Other symptoms that are less common and may affect some patients include loss of taste or smell, aches and pains, headache, sore throat, nasal congestion, red eyes, diarrhoea, or a skin rash.
Stay home and self-isolate even if you have minor symptoms such as cough, headache, mild fever, until you recover. Call your health care provider or hotline for advice. Have someone bring you supplies. If you need to leave your house or have someone near you, wear a medical mask to avoid infecting others.
If you have a fever, cough and difficulty breathing, seek medical attention immediately. Call by telephone first, if you can and follow the directions of your local health authority.
Keep up to date on the latest information from trusted sources, such as WHO or your local and national health authorities. Local and national authorities and public health units are best placed to advise on what people in your area should be doing to protect themselves.
</b> </li>
<br>
<br>
<br>
</ul>
</div>
<section class="protect" id="protect">
<p class="heading" style="font-size: 30px; background-color: rgba(220, 229, 245);color: rgba(8, 8, 77, 0.781);"> Protect yourself </p>
<div class="box-container">
<div class="box">
<img src="Images/awarness2.png" class="img">
<br>
<a href="#" class="btn">Learn More</a>
</div>
<br><br>
<div class="box">
<img src="Images/awarness1.png" class="img">
<br>
<a href="#" class="btn">Learn More</a>
</div>
<br><br>
<div class="box">
<img src="Images/awarness3.png" class="img">
<br>
<a href="#" class="btn">Learn More</a>
</div>
<br><br>
</div>
</div>
</section>
<!---------------------contact---------------------------->
<section class="faq container py-5" id="contact">
<div class="py-4" >
<p class="heading" style="font-size: 30px; background-color: rgba(220, 229, 245);color: rgba(8, 8, 77, 0.781); text-align: center;"> Vaccine Registration </p>
</div>
<div class="container " >
<div class="row mx-auto">
<div class="question-container ">
<div class="content-container">
<div class="faq-header">
<h5>Where can I get the vaccine from?</h5>
<span class="open active">+</span>
<span class="close">-</span>
</div>
<div class="content ">
<p style="color:rgb(64, 50, 50); font-size: 15px;">Vaccines are available from Government and Private Health Facilities as notified, known as COVID Vaccination Centres (CVCs).</p>
</div>
</div>
</div>
<div class="question-container">
<div class="content-container">
<div class="faq-header">
<h5>Will a Photo ID be required at the time of registration?</h5>
<span class="open active">+</span>
<span class="close">-</span>
</div>
<div class="content">
<p style="color:rgb(64, 50, 50); font-size: 15px;">The Photo ID produced at the time of registration must be produced and verified at the time of vaccination.
</p>
</div>
</div>
</div>
<div class="question-container">
<div class="content-container">
<div class="faq-header">
<h5>How will the beneficiary receive information about due date of vaccination?</h5>
<span class="open active">+</span>
<span class="close">-</span>
</div>
<div class="content">
<p style="color:rgb(64, 50, 50); font-size: 15px;">Following online registration, beneficiary will receive SMS on their registered mobile number about the due date, place and time of vaccination.</p>
</div>
</div>
</div>
<div class="question-container">
<div class="content-container">
<div class="faq-header">
<h5>Which COVID-19 vaccines are licensed in India?</h5>
<span class="open active">+</span>
<span class="close">-</span>
</div>
<div class="content">
<p style="color:rgb(64, 50, 50); font-size: 15px;">Two vaccines were granted emergency use authorization by the Central Drugs Standard Control Organization (CDSCO) in India, Covishield® (AstraZeneca's vaccine manufactured by Serum Institute of India) and Covaxin® (manufactured by Bharat Biotech Limited). Sputnik - V has been granted EUA in the month of April 2021.
</p>
</div>
</div>
</div>
<div class="question-container">
<div class="content-container">
<div class="faq-header">
<h5>Do I have a choice of vaccine I will receive?</h5>
<span class="open active">+</span>
<span class="close">-</span>
</div>
<div class="content">
<p style="color:rgb(64, 50, 50); font-size: 15px;">The vaccine will be supplied to various parts of India as per availability and distribution plan, beneficiaries load and so at present the option of choice of vaccine is not available
</p>
</div>
</div>
</div>
<div class="question-container">
<div class="content-container">
<div class="faq-header">
<h5>Is it mandatory to take the vaccine?</h5>
<span class="open active">+</span>
<span class="close">-</span>
</div>
<div class="content">
<p style="color:rgb(64, 50, 50); font-size: 15px;">Vaccination for COVID-19 is voluntary. However, it is advisable to receive the complete schedule of COVID-19 vaccine for protecting oneself against this disease and also to limit the spread of this disease to the close contacts including family members, friends, relatives and co-workers.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--------------------------------------------------->
<script>
const faqheader = document.querySelectorAll('.faq-header');
faqheader.forEach((header , i) =>{
header.addEventListener('click', () => {
header.nextElementSibling.classList.toggle('active');
const open= header.querySelector('.open');
const close= header.querySelector('.close');
if(header.nextElementSibling.classList.contains("active")){
close.classList.add('active');
}
else{
close.classList.remove('active');
}
});
});
</script>
</body>
</html>