forked from Kingstan070/coVaccination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
situation.html
542 lines (452 loc) · 22.7 KB
/
situation.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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/notmain.css">
<style>
</style>
<title>coVaccination</title>
</head>
<body onload="javascript:getInputValue()">
<button onclick="topFunction()" id="topkey" title="Go to top">Top</button>
<!--NAVIGATION BAR-->
<div class="navbar">
<div class="container">
<a class="logo" href="index.html">co<span>Vaccination</span></a>
<img class="mobile-menu" id="mobile-cta" src="img/menu.svg" alt="Open Navigation">
<nav>
<img class="mobile-menu-exit" id="mobile-exit" src="img/exit.svg" alt="Close Navigation">
<ul class="primary-nav">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#section-about">About</a></li>
<li><a href="#" onclick="getInputValue();">Situation</a></li>
<li><a href="#section-faq">FAQs</a></li>
<li><a href="#section-re">Resource</a></li>
</ul>
<ul class="secondary-nav">
<li ><a class="contact" href="index.html#section-contact">covid-19 helpline</a></li>
</ul>
</nav>
</div>
</div>
<!--*NAVIGATION BAR*-->
<!--SECTION1 SITUATION-->
<section class="situation" id="section-situation">
<div class="container">
<h1>Covid-19 Situation</h1>
<div class="left-col-situation">
<div class="searchBx">
<table class="elementsContainer">
<tr>
<td><input class="searchTxt" type="text" id="myInput" placeholder="Type country name ..."></td>
<td><a class="searchBtn" href="#" onclick="getInputValue();"><img src="img/search_black_24dp.svg" alt="Search button"></a></td>
</tr>
</table>
</div>
<div class="country-name">
<h2 class="country">Country <span id="country"></span></h2>
</div>
<div class="content">
<div class="box">
<div class="subtitle active" >Active Cases</div>
<div class="data" id="Active_Cases" style="color:blue;"></div>
</div>
<div class="box">
<div class="subtitle total">Total Cases</div>
<div class="data" id="Total_Cases" style="color: brown;"></div>
</div>
<div class="box">
<div class="subtitle critical">Critical Cases</div>
<div class="data" id="Critical_Cases" style="color: red;"></div>
</div>
<div class="box">
<div class="subtitle death">Total Deaths</div>
<div class="data" id="Total_Death" ></div>
</div>
<div class="box">
<div class="subtitle recovered">Recovered Cases</div>
<div class="data" id="Recovered_Cases" style="color: green;"></div>
</div>
<div class="box">
<div class="subtitle test" >Total Tests Done</div>
<div class="data" id="Total_Test_Done" style="color:blueviolet;" ></div>
</div>
</div>
</div>
<div class="flourish-embed flourish-map" data-src="story/225979" style="margin: 3em auto;"><script src="https://public.flourish.studio/resources/embed.js"></script></div>
</section>
<!--*SECTION1 SITUATION*-->
<!--SECTION2 V_SITUATION-->
<section class="v_situation" id="section-v_situation">
<h1 class="page-name">Vaccination situation</h1>
<div class="container">
<div class="left-col-v_situation">
<iframe src="https://ourworldindata.org/explorers/coronavirus-data-explorer?zoomToSelection=true&pickerSort=desc&pickerMetric=population&hideControls=true&Metric=People+vaccinated+%28by+dose%29&Interval=Cumulative&Relative+to+Population=true&Align+outbreaks=false&country=OWID_WRL~IND" loading="lazy" style="width: 100%; height: 600px; border: 0px none;"></iframe>
</div>
<div class="right-col-v_situation">
<iframe src="https://ourworldindata.org/grapher/covid-vaccination-doses-per-capita?tab=map&time=latest&country=~OWID_WRL" loading="lazy" style="width: 100%; height: 600px; border: 0px none;"></iframe>
</div>
</div>
</section>
<!--*SECTION2 V_SITUATION*-->
<!--SECTION3 FAQ-->
<section class="faq" id="section-faq">
<h1>Frequently Asked Questions</h1>
<div class="container">
<div class="faq-list">
<div class="box">
<h4>Will the <span>vaccine</span> be
safe as it is being
tested and introduced
in a short span of
time?</h4>
<p>Vaccines will be introduced in the country only
after the regulatory bodies clear it based on its
safety and efficacy. </p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Is a COVID <span>vaccine</span>
scheduled anytime
soon</h4>
<p>Yes, vaccine trials are under different stages of
finalization. Government of India is geared to
launch a vaccine for COVID 19 soon. For more
information and updates visit
www.mohfw.gov.in</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Will COVID 19 <span>vaccine</span>
be given to everyone
simultaneously</h4>
<p>Based on the potential availability of vaccines
the Government of India has selected the
priority groups who will be vaccinated on
priority as they are at higher risk. <br><br>
The first group includes healthcare and
frontline workers. The second group to receive
COVID 19 vaccine will be persons over 50 years
of age and persons under 50 years with
comorbid conditions</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Is it mandatory to take
the <span>vaccine</span>?</h4>
<p>Vaccination for COVID-19 is voluntary.
However, it is advisable to receive the complete
schedule of COVID-19 vaccine for protecting
one-self 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>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4> Can a person
presently having
COVID-19 (confirmed
or suspected)
infection be
vaccinated?</h4>
<p>Person with confirmed or suspected COVID-19
infection may increase the risk of spreading the
same to others at vaccination site. For this
reason, infected individuals should defer
vaccination for 14 days after symptoms
resolution.</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Is it necessary for a
COVID recovered
person to take the
<span>vaccine</span>?</h4>
<p>Yes, it is advisable to receive complete schedule
of COVID vaccine irrespective of past history of
infection with COVID-19. This will help in
developing a strong immune response against
the disease.</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Out of the multiple
<span>vaccines</span> available,
how is one or more
<span>vaccine</span> chosen for
administration?</h4>
<p>The safety and efficacy data from clinical trials
of vaccine candidates are examined by Drug
regulator of our country before granting the
license for the same. Hence, all the COVID-19
vaccines that receive license will have
comparable safety and efficacy. <br><br>
However, it must be ensured that the entire
schedule of vaccination is completed by only
one type of vaccine as different COVID-19
vaccines are not interchangeable.
</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Does India have the
capacity to store the
COVID <span>vaccine</span> at
temperature of +2 to
+8 degree Celsius and
transport them at
required
temperature?</h4>
<p>India runs one of the largest Immunization
programme in the world, catering to the
vaccination needs of more than 26 million
newborns and 29 million pregnant women. The
programme mechanisms are being
strengthened / geared up to effectively cater to
the country’s large and diverse population.</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Will the <span>vaccine</span>
introduced in India be
as effective as the
ones introduced in
other countries?</h4>
<p>Yes. The COVID 19 vaccine introduced in India
will be as effective as any vaccine developed by
other countries. Various phases of vaccine trials
are undertaken to ensure its safety and
efficacy. </p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>How will I know if I am
eligible for
vaccination?</h4>
<p>In the initial phase, COVID 19 vaccine will be
provided to the priority group- Health Care and
Front-line workers.
<br><br>
In the initial phase, COVID 19 vaccine will be
provided to the priority group- Health Care and
Front-line workers.
<br><br>
The eligible beneficiaries will be informed
through their registered mobile number
regarding the Health Facility where the
vaccination will be provided and the scheduled
time for the same. This will be done to avoid
any inconvenience in registration and
vaccination of beneficiaries.
</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4> Can a person get the
COVID-19 <span>vaccine</span>
without registration
with Health
Department?</h4>
<p>No, registration of beneficiary is mandatory for
vaccination for COVID 19. Only after
registration the information on the session site
to visit and time will be shared with the
beneficiary</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Will a Photo / ID be
required at the time
of registration?</h4>
<p>The Photo ID produced at the time of
registration must be produced and verified at
the time of vaccination.</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>If a person is not able
to produce Photo ID
at the session site,
whether s/he be
vaccinated or not?</h4>
<p>Photo ID is a must for both registration and
verification of beneficiary at session site to
ensure that the intended person is vaccinated</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>How will the
beneficiary receive
information about
due date of
vaccination?</h4>
<p>Following online registration, beneficiary will
receive SMS on their registered mobile number
on the due date, place and time of vaccination.</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Will vaccinated
beneficiaries receive
information on the
status of their
vaccination after
completion?</h4>
<p>Yes. On getting due dose of COVID 19 vaccine,
the beneficiary will receive SMS on their
registered mobile number.
<br><br>
After all doses of vaccine are administered, a
QR code based certificate will also be sent to
the registered mobile number of the
beneficiary.
</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>If one is taking
medicines for
illnesses like Cancer,
Diabetes,
Hypertension etc, can
s/he take the COVID-19 <span>vaccine</span>?</h4>
<p>Yes. Persons with one or more of these
comorbid conditions are considered high risk
category. They need to get COVID -19
vaccination.</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>Are there any
preventive measures
and precautions that
one needs to follow at
the session site?</h4>
<p>We request you to rest at the vaccination
centre for atleast half an hour after taking the
COVID-19 vaccine. Inform the nearest health
authorities / ANM / ASHA in case you feel any
discomfort or uneasiness subsequently.
<br><br>
Remember to continue following key COVID
Appropriate Behaviours like wearing of mask,
maintaining hand sanitization and physical
distance (or 6 feet or Do Gaj).
</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>What about the
possible side-effects
from COVID-19
<span>vaccine</span>?</h4>
<p>COVID Vaccine will be introduced only when
the safety is proven. As is true for other
vaccines, the common side effects in some
individuals could be mild fever, pain, etc. at the
site of injection.
<br><br>
States have been asked to start making
arrangements to deal with any Covid-19
vaccine-related side-effects as one of the
measures towards safe vaccine delivery among
masses.
</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4> How many doses of
the <span>vaccine</span> would
have to be taken by
me and at what
interval?</h4>
<p>Two doses of vaccine, 28 days apart, need to be
taken by an individual to complete the
vaccination schedule.</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
<div class="box">
<h4>When would
antibodies develop?
After taking first dose,
after taking second
dose, or much later?</h4>
<p>Protective levels of antibodies are generally
developed two weeks after receiving the 2nd
dose of COVID-19 vaccine.</p>
<a href="javascript:void();" class="readmore-btn">Read More</a>
</div>
</div>
</div>
</section>
<!--*SECTION3 FAQ*-->
<!--SECTION4 RE-->
<section class="re" id="section-re">
<h1 class="page-name">OTHER RESOURCES</h1>
<div class="container ree">
<a href="https://www.who.int/covid-19/" target="_blank">www.who.int/covid-19/</a>
<a href="https://www.mohfw.gov.in/" target="_blank">www.mohfw.gov.in</a>
<a href="https://www.cowin.gov.in/home/" target="_blank">www.cowin.gov.in/home/</a>
<a href="https://www.mygov.in/covid-19/" target="_blank">www.mygov.in/covid-19/</a>
</div>
</section>
<!--*SECTION4 RE*-->
</body>
<!--FOR MOBILE NAVIGATION FUNTIONING-->
<script src="script/navigation.js"></script>
<!--*FOR MOBILE NAVIGATION FUNTIONING*-->
<!--FOR SCROLL BACK BUTTON-->
<script>
var mybutton = document.getElementById("topkey");
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<!--FOR SCROLL BACK BUTTON-->
<script>
function getInputValue(){
var inputVal = document.getElementById("myInput").value;
if (inputVal == ''){
inputVal = "India";
}
//console.log(inputVal);
fetch("https://corona.lmao.ninja/v2/countries/"+inputVal)
.then((response) => {
return response.json();
})
.then((data) => {
console.log(data);
document.getElementById("country").innerHTML = data.country;
document.getElementById("Active_Cases").innerHTML = data.active;
document.getElementById("Total_Cases").innerHTML = data.cases;
document.getElementById("Critical_Cases").innerHTML = data.critical;
document.getElementById("Total_Death").innerHTML = data.deaths;
document.getElementById("Recovered_Cases").innerHTML = data.recovered;
document.getElementById("Total_Test_Done").innerHTML = data.tests;
});
}
</script>
<!--FOR READ MORE/READ LESS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script>
<script>
$(".readmore-btn").on('click',function(){
$(this).parent().toggleClass("showContent");
var replaceText = $(this).parent().hasClass("showContent") ? "Read Less" : "Read More";
$(this).text(replaceText);
});
</script>
<!--*FOR READ MORE/READ LESS*-->
</body>
</html>