-
Notifications
You must be signed in to change notification settings - Fork 2
/
corona.html
2226 lines (2033 loc) · 142 KB
/
corona.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
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description"
content="Curated, Uptodate Data of CORONA/COVID'19 including analytics and scientific representations. Day by day there is a lot going on around the globe in multiple domains which requires attention and vital analysis. We at Innovation Incubator believe in representing the right data, in best capturable and understandable representations, while ensuring they are validated and usable to researchers, public and companies alike. Lets change the world with these insights and analysis.">
<meta name="keywords"
content="planetvitals,innovation incubator,corona death count,coronavirus update, covid-19, corona virus india, corona virus symptoms,coronavirus latest news,coronavirus china,corona virus news,corona optus,corona effect,coronavirus death toll,coronavirus oregon,coronavirus italy,corona california,corona spread,corona latest update,corona virus death rate,coronavirus cure,corona virus mexico, corona virus kerala, latest corona reports,corona virus brazil,corona virus australia,corona virus vaccine,corona virus air born,corona FAQ,corona help,corona support,corona world ">
<meta name="author" content="innovation incubator">
<meta name="viewport" content="width=100%, initial-scale=1.0">
<meta property="og:title" content="Corona Statistics" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://planetvitals.iinerds.com/corona.html" />
<meta property="og:image" content="https://planetvitals.iinerds.com/assets/img/coronavirus_640.jpg" />
<meta property="og:description"
content="Live statistics tracking the number of confirmed cases, recovered patients, and death toll by country due to the novel coronavirus from Wuhan, China." />
<title>Corona Dashboard</title>
<!-- <link rel="stylesheet" href="assets/css/tb-corected.min.css"> -->
<link rel="stylesheet" href="assets/css/tb-corected.min0.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!--google analytics-->
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<!--youtube script-->
<!--youtube script ends-->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-158798381-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-158798381-1');
</script>
</head>
<body id="body-main">
<header id="header" style="background: #212121;" class="darkmode-ignore">
<div class="container">
<div class="logo float-left">
<h1 class="text-light"> <a href="index.html"><span>PLANET VITALS</span> </a> <a
href="https://innovationincubator.com/"><img id="header-logo" src="assets/img/iia-white.png"
style="float:right;"></a>
</h1>
</div>
<nav class="nav-menu float-right d-none d-lg-block">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li class="drop-down active"><a href="">Health</a>
<ul>
<li><a href="health.html">Info</a></li>
<li class="active"><a href="corona.html">Corona</a></li>
</ul>
</li>
<li><a href="agriculture.html">Agriculture</a></li>
<!-- <li><a href="#">Politics</a></li> -->
<li><a href="education.html">Education</a></li>
</ul>
</nav>
<!-- .nav-menu -->
</div>
</header><br><br><br>
<div class="container">
<nav class="sticky-top" style="top:60px" id="second-nav">
<div class="nav nav-tabs" style="background:#212121;" id="nav-tab" role="tablist">
<a class="nav-item nav-link active" id="corona-stats-tab" data-toggle="tab" href="#corona-stats"
role="tab" aria-controls="corona-stats" aria-selected="true">Stats</a>
<a class="nav-item nav-link" id="corona-Info-tab" data-toggle="tab" href="#corona-Info" role="tab"
aria-controls="corona-FAQ" aria-selected="false">Info</a>
<a class="nav-item nav-link" id="corona-FAQ-tab" data-toggle="tab" href="#corona-FAQ" role="tab"
aria-controls="corona-FAQ" aria-selected="false">F.A.Q</a>
<a class="nav-item nav-link" id="corona-news-tab" data-toggle="tab" href="#corona-news" role="tab"
aria-controls="corona-news" aria-selected="false">News</a>
<a class="nav-item nav-link" id="corona-news-tab" data-toggle="tab" href="#corona-video" role="tab"
aria-controls="corona-video" aria-selected="false">Videos</a>
<a class="nav-item nav-link" id="corona-infographics-tab" data-toggle="tab" href="#corona-infographics"
role="tab" aria-controls="corona-infographics" aria-selected="false">Infographics</a>
<a class="nav-item nav-link" id="corona-help-tab" data-toggle="tab" href="#corona-help" role="tab"
aria-controls="corona-help" aria-selected="false">Help</a>
</div>
</nav>
<!--TABs BEGIN-->
<div class="tab-content" id="nav-tabContent">
<!--STATS TAB BEGIN-->
<div class="tab-pane fade show active" id="corona-stats" role="tabpanel" aria-labelledby="corona-stats-tab">
<div class="container-fluid">
<h6 style="float:right;" class="mt-2">Would you like to contribute ? <a
href="https://github.com/innovationincubatoradvisory/Planetvitals/issues/new"><button
class=" btn btn-primary">
Contribute/Report</button></a>
</h6>
<div class="row pt-5 px-5">
<h3 style="color: slategrey;">
Countries with highest no of confirmed cases
</h3>
</div>
<div class="row">
<div class="chart-area h-80" style="height:300px;width: 100%;">
<canvas id="myAreaChart" class="darkmode-ignore"></canvas>
</div>
</div>
<div class="chart-subtitle row px-5">
<p style="color: lightgrey;">*The above chart is being updated based on hourly curated data from
multiple sources.
</p>
</div>
<div class="row pt-2 px-5">
<h3 style="color:grey;">
Corona Virus Cases:
</h3>
</div>
<div class="row px-5">
<div class="col-md-3">
<a href="#country" style="color: #699A21;" class="text-left"><u>View by Country</u></a>
</div>
<div class="col-md-3">
<a href="#by-age" style="color: #699A21;" class="text-left"><u>View Fatality by Age</u></a>
</div>
<div class="col-md-3">
<a href="#by-sex" style="color: #699A21;" class="text-left"><u>View Fatality by Sex</u></a>
</div>
<div class="col-md-3 p-0">
<a href="#by-comorbidity" style="color: #699A21;" class="text-left"><u>View Fatality by
COMORBIDITY</u></a>
</div>
</div>
<div class="row counts">
<div class=" col-md-3 pt-3 col-sm-12 text-center" style="border: none;">
<h4>Confirmed Cases</h4>
<p id="totalConfirmed" class="pt-3" style="color: #aaa;font-weight: 700;font-size: 54px;">
</p>
</div>
<div class=" col-md-3 pt-3 col-sm-12 text-center" style="border: none;">
<h4>Confirmed Death</h4>
<p id="totalDeaths" class="pt-3" style="color:red;font-weight: 700;font-size: 54px;"></p>
</div>
<div class=" col-md-3 pt-3 col-sm-12 text-center" style="border: none;">
<h4>Recovered</h4>
<p id="totalRecovered" class="pt-3" style="color:green;font-weight: 700;font-size: 54px;">
</p>
</div>
<div class=" col-md-3 pt-3 col-sm-12 text-center" style="border: none;">
<h4>Active Cases</h4>
<p id="totalSick" class="pt-3" style="color:orange;font-weight: 700;font-size: 54px;"></p>
</div>
</div>
<div class="row d-flex justify-content-center pt-2">
<div class="col-md-4">
<div class="dupcard">
<div class=" text-center">
<strong>ACTIVE CASES: </strong>
</div>
<div class="card-body text">
<h3 class="card-title text-center" id="card-infected-count" style="color:orange;">
</h3>
<p class="card-text text-center">Currently Infected patients</p>
<div class="row">
<div class="float-left col-md-6">
<h6 class="text-center" id="card-infected-mild" style="color:lawngreen">
</h6>
<p class="text-center">in mild condition</p>
</div>
<div class="float-right col-md-6">
<h6 class="text-center" id="card-infected-serious" style="color:red;"></h6>
<p class="text-center">in critical condition</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 p-0 m-0">
<canvas id="doughnut-chart" width="100%"></canvas>
</div><br>
<div class="col-md-4">
<div class="dupcard">
<div class=" text-center">
<strong> CLOSED CASES: </strong>
</div>
<div class="card-body text">
<h3 class="card-title text-center" id="card-closed-count" style="color:orange;">
</h3>
<p class="card-text text-center">cases with outcomes</p>
<div class="row">
<div class="float-left col-md-6">
<h6 class="text-center" id="card-closed-recovered" style="color:green">
</h6>
<p class="text-center">Recovered</p>
</div>
<div class="float-right col-md-6">
<h6 class="text-center" id="card-closed-death" style="color:darkred;"></h6>
<p class="text-center">in critical condition</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--table Headline-->
<div class="row pt-5 px-5">
<h3 style="color:grey;">
Corona Virus Confirmed Cases & Deaths by Country/Territory and Conveyances
</h3>
<p>Corona virus is affecting <strong><span id="count-country"
style="color:darkred;"></span></strong> around the world and the Diamond Princess
cruise ship harbored in Yokohama, Japan </p>
</div>
<nav id="fourth-nav">
<div class="nav nav-pills pl-3 py-3 d-flex justify-content-center" style="background: white;"
id="nav-tab" role="tablist">
<a class="nav-item nav-link active" id="corona-tableview-tab" data-toggle="tab"
href="#corona-tableview" role="tab" aria-controls="corona-tableview"
aria-selected="true">Table view</a>
<a class="nav-item nav-link" id="corona-mapview-tab" data-toggle="tab"
href="#corona-mapview" role="tab" aria-controls="corona-mapview"
aria-selected="false">Graphical/Map view</a>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="corona-tableview" role="tabpane01"
aria-labelledby="corona-tableview-tab">
<!-- STATS table start -->
<div class="row d-flex justify-content-center py-4" id="country">
<div class="col-sm-12 col-md-12 ">
<nav id="third-nav">
<div class="nav nav-pills pl-3 py-3" id="nav-tab" role="tablist">
<a class="nav-item nav-link active" id="corona-todaytable-tab"
data-toggle="tab" href="#corona-todaytable" role="tab"
aria-controls="corona-todaytable" aria-selected="true">Today</a>
<a class="nav-item nav-link" id="corona-ystrdytable-tab" data-toggle="tab"
href="#corona-ystrdytable" role="tab" aria-controls="corona-ystrdytable"
aria-selected="false">Yesterday</a>
</div>
</nav>
<!--Table TABs BEGIN-->
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="corona-todaytable" role="tabpanel"
aria-labelledby="corona-todaytable-tab">
<div class="container">
<table
class="table text-center table-striped table-bordered table-responsive-sm"
id="country-table-1">
<thead class="thead-dark">
<tr class="text-center">
<th style="color:whitesmoke">Country
</th>
<th style="color:whitesmoke">Confirmed
Cases
</th>
<th style="color:whitesmoke">New
cases
</th>
<th style="color:whitesmoke;">Total
Deaths
</th>
<th style="color:whitesmoke">New
Deaths
</th>
<th style="color:whitesmoke">Serious
Cases
</th>
<th style="color:whitesmoke">Active
Cases
</th>
<th style="color:whitesmoke;">Total
Recovered
</th>
<th style="color:whitesmoke">Cases/M
Population
</th>
<th style="color:whitesmoke">Deaths/M
Population
</th>
</tr>
</thead>
<tbody id="tb-content-1" style="color: #5b646e;">
</tbody>
</table>
</div>
</div>
<div class="tab-pane fade" id="corona-ystrdytable" role="tabpanel"
aria-labelledby="corona-ystrdytable-tab">
<div class="container">
<table
class="table text-center table-striped table-bordered table-responsive-sm"
id="country-table-2">
<thead class="thead-dark">
<tr class="text-center">
<th style="color:whitesmoke">Country
</th>
<th style="color:whitesmoke">Confirmed
Cases
</th>
<th style="color:whitesmoke">New
cases
</th>
<th style="color:whitesmoke;">Total
Deaths</th>
<th style="color:whitesmoke">New
Deaths
</th>
<th style="color:whitesmoke">Serious
Cases</th>
<th style="color:whitesmoke">Active
Cases</th>
<th style="color:whitesmoke;">Total
Recovered
</th>
<th style="color:whitesmoke">Cases/M
Population
</th>
<th style="color:whitesmoke">Deaths/M
Population
</th>
</tr>
</thead>
<tbody id="tb-content-2">
</tbody>
</table>
</div>
</div>
</div>
<p style="background-color: #bee5eb;">*Highlighted in green all cases have had an
outcome.</p>
<p style="color: lightgrey;">*The above table is being updated based on hourly
curated data from multiple sources and new cases are computed based on changes
from previous day and are updated at GMT +0</p>
</div>
</div>
<!-- fatality table starting -->
<section id="Table-datas" class="portfolio">
<div class="container">
<div class="row" id="by-age">
<div class="section-title">
<h2>COVID-19 Fatality Rate by AGE:</h2>
<p> <strong> *Death Rate</strong> = (number of deaths / number of cases) =
<strong>
probability
of dying if infected
by the virus (%).</strong> This probability differs depending on the
age
group.
The
percentages shown below <span style="color: red;">do not have to add up
to
100%</span> , as they <strong> do NOT represent
share of deaths by age group.</strong> Rather, it represents, for a
person
in a
given age
group, the <strong> risk of dying </strong>if infected with COVID-19.
</p>
<table class="table table-hover table-bordered table-condensed table-list">
<tbody>
<tr class="scrollable bordered" bgcolor="#FCF8F8">
<td height="33">
<div>AGE</div>
</td>
<td>DEATH RATE<br> confirmed cases <br></td>
<td>DEATH RATE<br> all cases</td>
</tr>
<tr class=" scrollable bordered text-center">
<td width="244">
<div><strong>80+ years old </strong></div>
</td>
<td width="125">
<div><strong>21.9%</strong></div>
</td>
<td width="125">
<div><strong>14.8%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong>70-79 years old </strong></div>
</td>
<td>
<div></div>
</td>
<td>
<div "><strong>8.0%</strong></div>
</td>
</tr>
<tr class=" scrollable bordered">
<td>
<div><strong>60-69 years old </strong></div>
</td>
<td>
<div></div>
</td>
<td>
<div><strong>3.6%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong>50-59 years old </strong></div>
</td>
<td>
<div></div>
</td>
<td>
<div><strong>1.3%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong>40-49 years old </strong></div>
</td>
<td>
<div></div>
</td>
<td>
<div><strong>0.4%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong>30-39 years old </strong></div>
</td>
<td>
<div></div>
</td>
<td>
<div><strong>0.2%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong>20-29 years old </strong></div>
</td>
<td>
<div></div>
</td>
<td>
<div><strong>0.2%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong>10-19 years old </strong></div>
</td>
<td>
<div></div>
</td>
<td>
<div><strong>0.2%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td><strong>0-9 years old </strong></td>
<td>
<div></div>
</td>
<td>
<div><strong>no fatalities </strong></div>
</td>
</tr>
</tbody>
</table><br><br>
<p> <strong> *Death Rate </strong>= (number of deaths / number of cases) =
<strong>
probability
of dying if infected
by the virus (%).</strong> The percentages do not have to add up to
100%, as
they <strong> do NOT
represent share of deaths by age</strong> group.</p><br><br>
</div>
<div class="row" id="by-sex">
<h2>COVID-19 Fatality Rate by SEX: </h2>
<p> <strong> *Death Rate</strong> = (number of deaths / number of cases) =
<strong>
probability of dying if infected
by the virus (%).</strong> This probability differs depending on
sex.
When
reading these
numbers, it must be taken into account that <strong> smoking </strong>in
China
is
much more prevalent
among males. Smoking increases the risks of respiratory complications.
</p>
<table class="table table-hover table-bordered table-condensed table-list">
<tbody>
<tr class="scrollable bordered" bgcolor="#FCF8F8">
<td height="33">
<div>SEX</div>
</td>
<td>DEATH RATE<br> confirmed cases <br></td>
<td>DEATH RATE<br> all cases</td>
</tr>
<tr class="scrollable bordered">
<td width="209">
<div><strong>Male</strong></div>
</td>
<td width="151">
<div><strong>4.7%</strong></div>
</td>
<td width="142">
<div><strong>2.8%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong>Female</strong></div>
</td>
<td>
<div><strong>2.8%</strong></div>
</td>
<td>
<div><strong>1.7%</strong></div>
</td>
</tr>
</tbody>
</table><br><br>
<p>*<strong>Death Rate</strong> = (number of deaths / number of cases) =
probability
of
dying if infected
by the virus (%). The percentages do not have to add up to 100%, as they
do
NOT
represent share of deaths by sex.</p><br><br>
</div>
<div class="row" id="by-comorbidity">
<h2>Pre-existing medical conditions (comorbidities)</h2>
<p>Patients who reported no pre-existing ("comorbid") medical conditions had
a
case
fatality rate of 0.9%. Pre-existing illnesses that put patients at
higher
risk
of
dying from a COVID-19 infection are:
</p><br>
<h2>COVID-19 Fatality Rate by COMORBIDITY: </h2>
<p> <strong>*Death Rate</strong> = (number of deaths / number of cases) =
<strong>probability of
dying if infected
by the virus (%).</strong> This probability differs depending on
pre-existing
condition. The
percentage shown below does <strong> NOT represent in any way the share
of
deaths by
pre-existing condition.</strong> Rather, it represents, for a
patient
with a
given
pre-existing condition, the <strong> risk of dying</strong> if infected
by
COVID-19.
</p>
<table class="table table-hover table-bordered table-condensed table-list">
<tbody>
<tr class="scrollable bordered" bgcolor="#FCF8F8">
<td height="33">
<div>PRE-EXISTING CONDITION</div>
</td>
<td>DEATH RATE<br> confirmed cases <br></td>
<td>DEATH RATE<br> all cases</td>
</tr>
<tr class="scrollable bordered">
<td width="252">
<div><strong><span
class="story-body__list-item">Cardiovascular
disease</span></strong></div>
</td>
<td width="141">
<div><strong>13.2%</strong></div>
</td>
<td width="122">
<div><strong>10.5%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong><span
class="story-body__list-item">Diabetes</span></strong>
</div>
</td>
<td>
<div><strong>9.2%</strong></div>
</td>
<td>
<div><strong>7.3%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><span class="story-body__list-item"><strong>Chronic
respiratory disease</strong></span></div>
</td>
<td>
<div><strong>8.0%</strong></div>
</td>
<td>
<div><strong>6.3%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong><span
class="story-body__list-item">Hypertension</span></strong>
</div>
</td>
<td>
<div><strong>8.4%</strong></div>
</td>
<td>
<div><strong>6.0%</strong></div>
</td>
</tr>
<tr class="scrollable bordered">
<td>
<div><strong>Cancer</strong></div>
</td>
<td>
<div><strong>7.6%</strong></div>
</td>
<td>
<div><strong>5.6%</strong></div>
</td>
</tr>
<tr class="scrollable bordered" bgcolor="#F9F9F9">
<td>
<div><strong><em>no pre-existing conditions </em></strong>
</div>
</td>
<td>
<div></div>
</td>
<td>
<div><strong>0.9%</strong></div>
</td>
</tr>
</tbody>
</table>
<p>*<strong>Death Rate</strong> = (number of deaths / number of cases) =
<strong>probability of dying if infected by the virus</strong> (%). The
percentages
<span style="color: red;"> do not have to add up to 100%</span>, as
they<strong>
do
NOT
represent share of deaths by condition. </strong></p>
</div>
</div>
</div>
</section>
<!-- fatality table ending -->
</div>
<div class="tab-pane fade show " id="corona-mapview" role="tabpane02"
aria-labelledby="corona-mapview-tab">
<div class="container darkmode-ignore">
<div class="row">
<iframe src="https://planetvitals.com/map.html" width="100%"
height="450px"></iframe>
</div>
<div class="row py-5">
<h3 style="color:grey;">
Corona Virus Confirmed Fatality Rate by Age
</h3>
<canvas id="bar-chart-byage" width="100%"></canvas>
<p style="color:grey;">*Death Rate = (number of deaths / number of cases) =
probability of dying if infected by the virus (%). The percentages do not have
to add up to 100%, as they do NOT represent share of deaths by age group.</p>
</div>
<div class="row py-5>">
<h3 style="color:grey;">
Corona Virus Confirmed Fatality Rate by SEX
</h3>
<canvas id="bar-chart-bysex" width="100%"></canvas>
<p style="color:grey;">*Death Rate = (number of deaths / number of cases) =
probability of dying if infected by the virus (%). The percentages do not have
to add up to 100%, as they do NOT represent share of deaths by sex.</p>
</div>
<div class="row py-5>">
<h3 style="color:grey;">
Corona Virus Confirmed Fatality Rate by COMORBIDITY
</h3>
<canvas id="bar-chart-bycomorbidity" width="100%"></canvas>
<p style="color:grey;">*Death Rate = (number of deaths / number of cases) =
probability of dying if infected by the virus (%). The percentages do not have
to add up to 100%, as they do NOT represent share of deaths by condition.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--STATS table END-->
<!--Info TAB BEGINS-->
<div class="tab-pane fade" id="corona-Info" role="tabpanel" aria-labelledby="corona-Info-tab">
<div class="container pt-5">
<div class="row">
<div class="col-md-4">
<a class="twitter-timeline" href="https://twitter.com/WHO?ref_src=twsrc%5Etfw">Tweets by
WHO</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="col-md-4">
<a class="twitter-timeline"
href="https://twitter.com/covid2019_info?ref_src=twsrc%5Etfw">Tweets
by
covid2019_info</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="col-md-4">
<a class="twitter-timeline" href="https://twitter.com/TIME?ref_src=twsrc%5Etfw">Tweets by
TIME</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
</div>
<!--Info TAB ENDS-->
<!--FAQ TAB BEGINS-->
<div class="tab-pane fade" id="corona-FAQ" role="tabpanel" aria-labelledby="corona-FAQ-tab">
<div class="container pt-5">
<h2 style="color: slategrey;">Frequently Asked Questions</h2>
<div class="accordion">
<div class="accordion-item">
<a>What is a coronavirus?</a>
<div class="content">
<p>Coronaviruses are a large family of viruses which may cause illness in animals or
humans. In
humans,
several coronaviruses are known to cause respiratory infections ranging from the
common
cold
to more
severe diseases such as Middle East Respiratory Syndrome (MERS) and Severe Acute
Respiratory
Syndrome
(SARS). The most recently discovered coronavirus causes coronavirus disease
COVID-19.</p>
</div>
</div>
<div class="accordion-item">
<a>What is COVID-19?</a>
<div class="content">
<p>COVID-19 is the infectious disease caused by the most recently discovered
coronavirus.
This
new virus and
disease were unknown before the outbreak began in Wuhan, China, in December 2019.
</p>
</div>
</div>
<div class="accordion-item">
<a>What are the symptoms of COVID-19?</a>
<div class="content">
<p>The most common symptoms of COVID-19 are fever, tiredness, and dry cough. Some
patients
may
have aches and
pains, nasal congestion, runny nose, sore throat or diarrhea. These symptoms are
usually
mild and begin
gradually. Some people become infected but don’t develop any symptoms and don't feel
unwell.
Most people
(about 80%) recover from the disease without needing special treatment. Around 1 out
of
every 6 people who
gets COVID-19 becomes seriously ill and develops difficulty breathing. Older people,
and
those with
underlying medical problems like high blood pressure, heart problems or diabetes,
are
more
likely to
develop serious illness. People with fever, cough and difficulty breathing should
seek
medical attention.</p>
</div>
</div>
<div class="accordion-item">
<a>How does COVID-19 spread?</a>
<div class="content">
<p>People can catch COVID-19 from others who have the virus. The disease can spread from
person
to person
through small droplets from the nose or mouth which are spread when a person with
COVID-19
coughs or
exhales. These droplets land on objects and surfaces around the person. Other people
then
catch COVID-19
by touching these objects or surfaces, then touching their eyes, nose or mouth.
People
can
also catch
COVID-19 if they breathe in droplets from a person with COVID-19 who coughs out or
exhales
droplets. This
is why it is important to stay more than 1 meter (3 feet) away from a person who is
sick.
WHO is assessing
ongoing research on the ways COVID-19 is spread and will continue to share updated
findings.
Dolor sit
amet consectetur adipiscing elit pellentesque habitant morbi. Id interdum velit
laoreet id donec
ultrices. Fringilla phasellus faucibus scelerisque eleifend donec pretium. Est
pellentesque
elit
ullamcorper dignissim.</p>
</div>
</div>
<div class="accordion-item">
<a> How long is the incubation period for COVID-19?
</a>
<div class="content">
<p>The “incubation period” means the time between catching the virus and beginning to
have
symptoms of the disease. Most estimates of the incubation period for COVID-19 range
from
1-14 days, most commonly around five days. These estimates will be updated as more
data
become available. 11
</p>
</div>
</div>
<div class="accordion-item">
<a> Are children more susceptible to the virus that causes COVID-19 compared with the
general
population and how can infection be prevented? </a>
<div class="content">
<p> No, there is no evidence that children are more susceptible. In fact, most confirmed
cases
of COVID-19 reported from China have occurred in adults. Infections in children have
been
reported, including in very young children. From limited information published from
past
Severe Acute Respiratory Syndrome coronavirus (SARS-CoV) and Middle East respiratory
syndrome coronavirus (MERS-CoV) outbreaks, infection among children was relatively
uncommon.
</p>
</div>
</div>
<div class="accordion-item">
<a> Are pregnant women more susceptible to infection, or at increased risk for severe
illness,
morbidity, or mortality with COVID-19, compared with the general public?</a>
<div class="content">
<p>We do not have information on adverse pregnancy outcomes in pregnant women with
COVID-19.
Pregnancy loss, including miscarriage and stillbirth, has been observed in cases of
infection with other related coronaviruses [SARS-CoV and MERS-CoV] during pregnancy.
High
fevers during the first trimester of pregnancy can increase the risk of certain
birth
defects. </p>
</div>
</div>
<div class="accordion-item">
<a>What are the recommendations on use of chlorine for nCoV hand hygiene and
decontamination? </a>
<div class="content">
<p>Weak chlorine solution (0.05%) can be used to disinfect hands when there is no
alcohol based
hand rub (ABHR) or soap. However, weak chlorine solutions are not recommended when
alcohol
based hand rub or soap and water are available as there is a higher risk of hand
irritation
and ill health effects from making and diluting chlorine solutions. Further chlorine
solutions must be made daily, stored in a cool dry place with a lid away from
sunlight,
otherwise they have the potential to lose potency and efficacy at disinfection.
Chlorine is
effective as a decontamination (at 0.5%) for environmental cleaning when preceded by
cleaning with soap and water. </p>
</div>
</div>
<div class="accordion-item">
<a> Is it safe to receive a package from any area where COVID-19 has been reported?</a>
<div class="content">
<p> Yes. The likelihood of an infected person contaminating commercial goods is low and
the risk
of catching the virus that causes COVID-19 from a package that has been moved,
travelled,
and exposed to different conditions and temperature is also low.</p>
</div>
</div>
<div class="accordion-item">
<a>How long does the virus survive on surfaces ?
</a>
<div class="content">
<p> It is not certain how long the virus that causes COVID-19 survives on surfaces, but
it seems
to behave like other coronaviruses. Studies suggest that coronaviruses (including
preliminary information on the COVID-19 virus) may persist on surfaces for a few
hours or up
to several days. This may vary under different conditions (e.g. type of surface,
temperature
or humidity of the environment). If you think a surface may be infected, clean it
with
simple disinfectant to kill the virus and protect yourself and others. Clean your
hands with
an alcohol-based hand rub or wash them with soap and water. Avoid touching your
eyes, mouth,
or nose.
</p>
</div>
</div>
<div class="accordion-item">
<a>Can humans become infected with the COVID-19 from an animal source? </a>
<div class="content">
<p>Coronaviruses are a large family of viruses that are common in animals. Occasionally,
people
get infected with these viruses which may then spread to other people. For example,
SARS-CoV
was associated with civet cats and MERS-CoV is transmitted by dromedary camels.
Possible
animal sources of COVID-19 have not yet been confirmed. To protect yourself, such as
when
visiting live animal markets, avoid direct contact with animals and surfaces in
contact with
animals. Ensure good food safety practices at all times. Handle raw meat, milk or
animal
organs with care to avoid contamination of uncooked foods and avoid consuming raw or
undercooked animal products. </p>
</div>
</div>
<div class="accordion-item">
<a>Should I wear a mask to protect myself? </a>
<div class="content">
<p>Only wear a mask if you are ill with COVID-19 symptoms (especially coughing) or
looking after
someone who may have COVID-19. Disposable face mask can only be used once. If you
are not
ill or looking after someone who is ill then you are wasting a mask. There is a
world-wide
shortage of masks, so WHO urges people to use masks wisely. WHO advises rational use
of
medical masks to avoid unnecessary wastage of precious resources and mis-use of
masks (see
Advice on the use of masks). The most effective ways to protect yourself and others