-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1623 lines (1538 loc) · 99.9 KB
/
index.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="viewport" content="width=device-width, initial-scale=1.0">
<!-- bootstrap css cdn -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Font awesome Icon CDN -->
<script src="https://kit.fontawesome.com/6078c5a9f0.js" crossorigin="anonymous"></script>
<!-- maginific pop css file -->
<link rel="stylesheet" href="./Magnific-Popup/dist/magnific-popup.css">
<!-- Owl Carousel CSS File -->
<link rel="stylesheet" href="./owlcarsoul/css/owl.carousel.min.css">
<link rel="stylesheet" href="./owlcarsoul/css/owl.theme.default.min.css">
<!-- custom css -->
<link rel="stylesheet" href="./css/style.css">
<!-- Responsive css -->
<link rel="stylesheet" href="./css/responsive.css">
<!-- for icons-->
<link rel="shortcut icon" href="images/favicon.png" />
<title>Covid-19 - Updates</title>
<!-- for logo icon-->
<link rel="icon" href="assets/logo.webp" type="image/icon type">
</head>
<!-- Start header Area -->
<body>
<header class="header_area">
<div class="main-menu">
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: rgba(255,255,255,1)">
<a class="navbar-brand" href="#"><span class="brand">Covid-19</span></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<div class="mr-auto"></div>
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#home">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#aboutme">About Corona</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#symptoms">Symptoms</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#protect">Protect</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#treatment">Treatment</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="" href="completereport.html"><button class="stats btn btn-primary">World Status</button></a>
</li>
</ul>
</div>
</nav>
<div class="progress-container">
<div class="progress-bar" id="myBar"></div>
</div>
</div>
</header>
<!-- End header Area -->
<!-- main area -->
<main>
<!-- Hero Section -->
<section class="hero-section" id="home">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 site-title">
<h1 class="headingg">
<span>CORONA</span>
<span class="headingg-sm">
<span class="sup">COVID-19</span>
<span class="sub">VIRUS</span>
</span>
</h1>
<h4 class="title-text text-uppercase">Prevent The Spread</h4>
<h1 class="title-text text-uppercase">Stay at Home, Stay Safe</h1>
<div class="site-buttons">
<div class="d-flex flex-row flex-wrap mt-4">
<a href="#protect" class="btn button primary-button mr-4 text uppercase"
type="button">How to
Protect <i class="fas fa-shield-virus pl-2"></i></a>
<a href="completereport.html" class="btn button secondry-button text-uppercase"
type="button">All States <i class="fas fa-long-arrow-alt-right pl-2"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 banner-image">
<img src="./assets/gfx-b.png" alt="banner-image" class="img-fluid">
</div>
</div>
</div>
</section>
<!-- End Hero Section -->
<!-- corona status -->
<section class="corona-stats">
<div class="container">
<div class="row">
<div class="heading pb-5">
<h1 class="title-h1">Corona Live Status</h1>
<h5 class="text-color">In India</h5>
<p class="text-muted" id="lastupdate">Last Update: </p>
</div>
<div class="container-fluid text-center">
<div class="numbers d-flex flex-md-row flex-wrap justify-content-center">
<div class="ract confirmed">
<h1 id="confirmed" style="color: orange;"></h1>
<p>Total Active Case</p>
</div>
<div class="ract">
<h1 id="active" style="color: steelblue"></h1>
<p>Active</p>
</div>
<div class="ract">
<h1 id="recovered" style="color: yellowgreen;"></h1>
<p>Recovered</p>
</div>
<div class="ract">
<h1 id="deaths" style="color: orangered;"></h1>
<p>Death</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end corona status -->
<!-- Intro Section -->
<section class="intro-section" id="aboutme">
<div class="container text-center">
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="pray" data-aos="zoom-in-up">
<img src="./assets/gfx-a.png" alt="" class="img-fluid">
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="panel text-left" data-aos="zoom-in-up">
<h5>About the Disease</h5>
<h1>Coronavirus (COVID-19)</h1>
<p>
<strong>COVID-19 is a new illness that can affect your lungs and airways.</strong> It's
caused by a virus
called coronavirus. It was discovered in December 2019 in Wuhan, Hubei, China.
</p>
<p>Common signs of infection include respiratory symptoms, fever, cough, shortness of breath
and
breathing difficulties. In more severe cases, infection can cause pneumonia, severe
acute
respiratory syndrome, kidney failure and even death. For more details visit WHO website.
</p>
<a href="https://www.who.int/emergencies/diseases/novel-coronavirus-2019"
class="btn button secondry-button text-uppercase">WHO Website <i
class="fas fa-long-arrow-alt-right pl-2" target="_blank"></i></a>
</div>
</div>
</div>
</div>
</section>
<!--
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#aadaf1" fill-opacity="1"
d="M0,320L17.1,309.3C34.3,299,69,277,103,229.3C137.1,181,171,107,206,106.7C240,107,274,181,309,224C342.9,267,377,277,411,245.3C445.7,213,480,139,514,128C548.6,117,583,171,617,160C651.4,149,686,75,720,64C754.3,53,789,107,823,154.7C857.1,203,891,245,926,261.3C960,277,994,267,1029,256C1062.9,245,1097,235,1131,213.3C1165.7,192,1200,160,1234,149.3C1268.6,139,1303,149,1337,160C1371.4,171,1406,181,1423,186.7L1440,192L1440,0L1422.9,0C1405.7,0,1371,0,1337,0C1302.9,0,1269,0,1234,0C1200,0,1166,0,1131,0C1097.1,0,1063,0,1029,0C994.3,0,960,0,926,0C891.4,0,857,0,823,0C788.6,0,754,0,720,0C685.7,0,651,0,617,0C582.9,0,549,0,514,0C480,0,446,0,411,0C377.1,0,343,0,309,0C274.3,0,240,0,206,0C171.4,0,137,0,103,0C68.6,0,34,0,17,0L0,0Z">
</path>
</svg>
-->
<!-- End Intro Section -->
<!-- symptoms section-->
<section
class="section section-l bg-white section-symptom"
id="symptoms"
>
<div class="container">
<div class="section-head text-center wide-lg">
<h5 class="subtitle">WHAT ARE THE SYMPTOMS OF COVID-19?</h5>
<h2 class="title">SYMPTOMS OF CORONAVIRUS</h2>
<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. Also the symptoms may
appear 2-14 days after exposure.
</p>
</div>
<div class="section-content">
<div class="row g-gs justify-content-center">
<div class="col-sm-10 col-md-8 col-lg-4">
<div class="box2">
<div class="box2-gfx">
<img src="assets/symptom-a.png" height="90rem" width="80rem" alt="" />
</div>
<div class="box2-content">
<h5 class="title">Fever</h5>
<p>
<strong>High Fever</strong> – this means you feel hot to
touch on your chest or back (you do not need to measure
your temperature). It is a common sign and also may
appear in 2-10 days if you affected.
</p>
</div>
</div>
</div>
<div class="col-sm-10 col-md-8 col-lg-4">
<div class="box2">
<div class="box2-gfx">
<img src="assets/symptom-b.png" height="90rem" width="80rem" alt="" />
</div>
<div class="box2-content">
<h5 class="title">Cough</h5>
<p>
<strong>Continuous cough</strong> – this means coughing
a lot for more than an hour, or 3 or more coughing
episodes in 24 hours (if you usually have a cough, it
may be worse than usual).
</p>
</div>
</div>
</div>
<div class="col-sm-10 col-md-8 col-lg-4">
<div class="box2">
<div class="box2-gfx">
<img src="assets/symptom-c.png" height="90rem" width="80rem" alt="" />
</div>
<div class="box2-content">
<h5 class="title">Shortness of breath</h5>
<p>
<strong>Difficulty breathing</strong> – Around 1 out of
every 6 people who gets COVID-19 becomes seriously ill
and develops difficulty breathing or shortness of
breath.
</p>
</div>
</div>
</div>
</div>
<div class="section-cta">
<div class="row g-gs justify-content-center">
<div class="col-sm-10 col-md-8 col-lg-7 col-xl-8">
<div class="notes">
<em class="icon ni ni-alert-fill-c"></em>
<p>
<strong>Stay at home and call your doctor:</strong><i> If
you think you have been exposed to COVID-19 and develop
a fever and any symptoms, such as cough or difficulty
breathing, call your healthcare provider as soon as
possible for medical advice.</i>
</p>
</div>
</div>
<div class="col-sm-10 col-md-8 col-lg-5 col-xl-4">
<div
class="d-flex justify-content-lg-end ml-sm-5 ml-4 pl-3 ml-lg-0 pl-lg-0"
>
<a href="#faq" class="btn scrollto"
><em class="icon ni ni-question"></em
><span><button type="button" class="btn btn-info"> Have question? Find answer </button></span></a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end of symptons section-->
<!-- prevention section -->
<section class="prevention" id="protect">
<div class="container-fluid">
<div class="container">
<div class="row">
<div class="col-lg-12 col-sm-12 col-md-12 prevent-box">
<h2>Take steps to protect others</h2>
<div class="row mt-5">
<div class="col-lg-9 col-md-9">
<div class="prevention-list">
<ul>
<li><strong>Stay home if you’re sick —</strong> Stay home if you
are
sick, except to get medical care.</li>
<li><strong>Cover your mouth and nose —</strong> with a tissue
when
you cough or sneeze (throw used tissues in the trash) or use the inside
of
your elbow.</li>
<li><strong>Wear a facemask if you are sick —</strong> You should
wear a facemask when you are around other people (e.g., sharing a room
or
vehicle) and before you enter a healthcare provider’s.</li>
<li><strong>Clean AND disinfect frequently touched surfaces daily
—</strong> This includes phones, tables, light switches,
doorknobs, countertops, handles, desks, toilets, faucets, and sinks.
</li>
<li><strong>Clean the dirty surfaces —</strong> Use detergent or
soap and water prior to disinfection.</li>
<li><strong>Stay informed about the local COVID-19 situation
—</strong> Get up-to-date information about local
COVID-19
activity from public health officials.</li>
<li><strong>Dedicated, lined trash can —</strong> If possible,
dedicate a lined trash can for the ill person. Use gloves when removing
garbage bags, and handling & disposing of trash.</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-3">
<img src="./assets/doctor.png" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#aadaf1" fill-opacity="1"
d="M0,320L17.1,309.3C34.3,299,69,277,103,229.3C137.1,181,171,107,206,106.7C240,107,274,181,309,224C342.9,267,377,277,411,245.3C445.7,213,480,139,514,128C548.6,117,583,171,617,160C651.4,149,686,75,720,64C754.3,53,789,107,823,154.7C857.1,203,891,245,926,261.3C960,277,994,267,1029,256C1062.9,245,1097,235,1131,213.3C1165.7,192,1200,160,1234,149.3C1268.6,139,1303,149,1337,160C1371.4,171,1406,181,1423,186.7L1440,192L1440,0L1422.9,0C1405.7,0,1371,0,1337,0C1302.9,0,1269,0,1234,0C1200,0,1166,0,1131,0C1097.1,0,1063,0,1029,0C994.3,0,960,0,926,0C891.4,0,857,0,823,0C788.6,0,754,0,720,0C685.7,0,651,0,617,0C582.9,0,549,0,514,0C480,0,446,0,411,0C377.1,0,343,0,309,0C274.3,0,240,0,206,0C171.4,0,137,0,103,0C68.6,0,34,0,17,0L0,0Z">
</path>
</svg>
<!-- End prevention section -->
<!--Wash hands-->
<section
class="section section-l section-handwash"
id="handwash"
>
<div class="container mt-n4">
<div class="section-subhead text-center">
<h4 class="title">
<b> Follow steps to <br class="d-sm-none" />
wash hands</b>
</h4>
<a href="#faq" class="btn btn-sm btn-transparent scrollto"
><span class="wash_hands btn btn-primary" >Why do I need to wash hands</span
><em class="icon ni ni-arrow-long-right"></em
></a>
</div>
<div class="section-content">
<div class="row g-gs justify-content-center">
<div class="col-6 col-mb-5 col-sm-4 col-lg-2">
<div class="box4">
<div class="box4-gfx">
<img src="assets/hand-a.png" height="120rem" width="120rem" alt="" />
</div>
<div class="box4-content">
<h6 class="title">Soap on Hand</h6>
</div>
</div>
</div>
<div class="col-6 col-mb-5 col-sm-4 col-lg-2">
<div class="box4">
<div class="box4-gfx">
<img src="assets/hand-b.png" height="120rem" width="120rem" alt="" />
</div>
<div class="box4-content">
<h6 class="title">Palm to Palm</h6>
</div>
</div>
</div>
<div class="col-6 col-mb-5 col-sm-4 col-lg-2">
<div class="box4">
<div class="box4-gfx">
<img src="assets/hand-c.png" height="120rem" width="120rem" alt="" />
</div>
<div class="box4-content">
<h6 class="title">Between Fingers</h6>
</div>
</div>
</div>
<div class="col-6 col-mb-5 col-sm-4 col-lg-2">
<div class="box4">
<div class="box4-gfx">
<img src="assets/hand-d.png" height="120rem" width="120rem" alt="" />
</div>
<div class="box4-content">
<h6 class="title">Back to Hands</h6>
</div>
</div>
</div>
<div class="col-6 col-mb-5 col-sm-4 col-lg-2">
<div class="box4">
<div class="box4-gfx">
<img src="assets/hand-e.png" height="120rem" width="120rem" alt="" />
</div>
<div class="box4-content">
<h6 class="title">Clean with Water</h6>
</div>
</div>
</div>
<div class="col-6 col-mb-5 col-sm-4 col-lg-2">
<div class="box4">
<div class="box4-gfx">
<img src="assets/hand-f.png" height="120rem" width="120rem" alt="" />
</div>
<div class="box4-content">
<h6 class="title">Focus on Wrist</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of wash hands-->
<!-- treatment-->
<section
class="section section-l bg-accent-light tc-light section-treatment has-overlay"
id="treatment"
>
<div class="overlay shape shape-b"></div>
<div class="container">
<div class="section-content">
<div
class="row g-gs gy-sm-m justify-content-between align-items-center"
>
<div class="col-lg-7 col-xl-6">
<div class="text-block">
<h5 class="subtitle">Be carefull & Stay Safe</h5>
<h2 class="title">Treatment for coronavirus</h2>
<p>
<strong
>To date, there is no vaccine and no specific antiviral
medicine to prevent or treat COVID-2019.
</strong>
However, those affected should receive care to relieve
symptoms. People with serious illness should be
hospitalized. Most patients recover thanks to supportive
care.
</p>
<p>
Antibiotics do not help, as they do not work against
viruses. Treatment aims to relieve the symptoms while your
body fights the illness. You'll need to stay in isolation,
away from other people, until you have recovered.
</p>
</div>
</div>
<div class="col-lg-5">
<div class="box5 bg-accent-dark">
<h6 class="title">Self Care</h6>
<p>
If you have mild symptoms, stay at home until you’ve
recovered. You can relieve your symptoms if you:
</p>
<ul class="list-arrow">
<li>Rest and sleep</li>
<li>Keep warm</li>
<li>Drink plenty of liquids</li>
<li>
Use a room humidifier or take a hot shower to help ease
a sore throat and cough
</li>
</ul>
<h6 class="title">Medical Treatments</h6>
<p>
If you develop a fever, cough, and have difficulty
breathing, promptly seek medical care. Call in advance and
tell your health provider of any recent travel or recent
contact with travelers.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end of treatment-->
<!-- Do's and Dont's-->
<section
class="section section-l section-protect"
id="protect"
>
<div class="container">
<div class="section-head text-center wide-lg">
<h5 class="subtitle">Do’s & Don’ts</h5>
<h2 class="title">Protect yourself</h2>
<p>
The best thing you can do now is plan for how you can adapt your
daily routine. Take few steps to protect yourself as Clean your
hands often, Avoid close contact, Cover coughs and sneezes,
clean daily used surfaces etc. The best way to prevent illness
is to avoid being exposed to this virus.
</p>
</div>
<div class="section-content">
<div class="row g-gs justify-content-center flex-lg-nowrap">
<div class="col-md-8 col-lg-5 col-xl-6 align-self-end">
<div class="protect-block-gfx">
<img src="assets/protect.png" height="450rem" width="540rem" alt="" />
</div>
</div>
<div
class="col-6 col-mb-5 col-sm-6 col-lg-4 col-xl-3 flex-grow-1 order-lg-first"
>
<div class="protect-item negative">
<div class="protect-gfx">
<img src="assets/donts-a.png" height="100rem" width="90rem" alt="" />
</div>
<div class="protect-text">
<h5 class="title">Avoid Close Contact</h5>
</div>
</div>
<div class="protect-item negative">
<div class="protect-gfx">
<img src="assets/donts-b.png" height="100rem" width="90rem" alt="" />
</div>
<div class="protect-text">
<h5 class="title">Don’t Touch Face</h5>
</div>
</div>
<div class="protect-item negative">
<div class="protect-gfx">
<img src="assets/donts-c.png" height="100rem" width="90rem" alt="" />
</div>
<div class="protect-text">
<h5 class="title">Social Distancing</h5>
</div>
</div>
</div>
<div
class="col-6 col-mb-5 col-sm-6 col-lg-4 col-xl-3 flex-grow-1"
>
<div class="protect-item positive">
<div class="protect-gfx">
<img src="assets/dos-a.png" height="100rem" width="90rem" alt="" />
</div>
<div class="protect-text">
<h5 class="title">Wash Your Hands</h5>
</div>
</div>
<div class="protect-item positive">
<div class="protect-gfx">
<img src="assets/dos-b.png" height="100rem" width="90rem" alt="" />
</div>
<div class="protect-text">
<h5 class="title">Drink Much Watar</h5>
</div>
</div>
<div class="protect-item positive">
<div class="protect-gfx">
<img src="assets/dos-c.png" height="100rem" width="90rem" alt="" />
</div>
<div class="protect-text">
<h5 class="title">Use Face Mask</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#aadaf1" fill-opacity="1"
d="M0,320L17.1,309.3C34.3,299,69,277,103,229.3C137.1,181,171,107,206,106.7C240,107,274,181,309,224C342.9,267,377,277,411,245.3C445.7,213,480,139,514,128C548.6,117,583,171,617,160C651.4,149,686,75,720,64C754.3,53,789,107,823,154.7C857.1,203,891,245,926,261.3C960,277,994,267,1029,256C1062.9,245,1097,235,1131,213.3C1165.7,192,1200,160,1234,149.3C1268.6,139,1303,149,1337,160C1371.4,171,1406,181,1423,186.7L1440,192L1440,0L1422.9,0C1405.7,0,1371,0,1337,0C1302.9,0,1269,0,1234,0C1200,0,1166,0,1131,0C1097.1,0,1063,0,1029,0C994.3,0,960,0,926,0C891.4,0,857,0,823,0C788.6,0,754,0,720,0C685.7,0,651,0,617,0C582.9,0,549,0,514,0C480,0,446,0,411,0C377.1,0,343,0,309,0C274.3,0,240,0,206,0C171.4,0,137,0,103,0C68.6,0,34,0,17,0L0,0Z">
</path>
</svg>
<!-- end of do's and dont's-->
<!-- tips section -->
<section class="tips mt-5">
<div class="container">
<div class="row">
<div class="grid-flex">
<div class="col col-image tips-img">
<img src="./assets/mask-woman-right.png" alt="" class="img-size">
</div>
<div class="col col-text">
<div class="Aligner-item">
<h3>Always Wear Mask Whenever You Go Outside</h3>
<p class="para"><strong>It is difficult to maintain the recommended 6-foot social distancing</strong> from others
(such as going to the grocery store or pharmacy or walking on a busy street or in a crowded neighborhood).</p>
</div>
</div>
</div>
<div class="grid-flex">
<div class="col col-image tips-img">
<img src="./assets/remote-work-woman.png" alt="" class="img-size">
</div>
<div class="col col-text col-left">
<div class="Aligner-item">
<h3>Meet Friends Online</h3>
<p class="para"><strong>Connect with new people</strong>, share an online-movie night with friends.
Take your board games digital. I recommend having a conference call going with your friends on speakerphone,
so everyone can make the “wood for sheep” Catan joke again.</p>
</div>
</div>
</div>
<div class="grid-flex">
<div class="col col-image tips-img">
<img src="./assets/mask-man.png" alt="" class="img-size">
</div>
<div class="col col-text ">
<div class="Aligner-item">
<h3>Go Outside When Neccessary</h3>
<p class="para"><strong>As the coronavirus pandemic continues</strong>,
many people are now overthinking things they never used to think about at all.
Can you go outside? What if you’re walking downwind of another person?
What if you’re stuck waiting at a crosswalk and someone is there?
What if you’re going for a run, and another runner is heading toward you, and the sidewalk is narrow?
Suddenly, daily mundanities seem to demand strategy.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End tips section -->
<!-- Gallary Area -->
<div class="gallary-area" id="gallary">
<div class="container">
<div class="gallary-title pb-5">
<h1 class="title-h1">Corona Warrior —</h1>
</div>
<div class="button-group">
<button type="button" data-filter="*" class="active" id="btn1">All</button>
<button type="button" data-filter=".doctor">Doctor</button>
<button type="button" data-filter=".police">Police</button>
<button type="button" data-filter=".worker">Worker
</button>
<button type="button" data-filter=".other">Other</button>
</div>
<div class="row grid">
<div class="col-lg-4 col-md-6 col-sm-12 element-item doctor">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-1.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-1.jpg" alt="hero-1" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item police">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-6.jpeg" class="test-popup-link">
<img src="./assets/gallary/hero-6.jpeg" alt="2" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item doctor">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-2.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-2.jpg" alt="3" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item worker">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-9.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-9.jpg" alt="4" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item other">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-7.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-7.jpg" alt="5" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item police">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-5.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-5.jpg" alt="6" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item doctor">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-3.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-3.jpg" alt="7" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item other">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-10.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-10.jpg" alt="8" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item worker">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-8.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-8.jpg" alt="9" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item other">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-4.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-4.jpg" alt="10" class="img-fluid">
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 element-item worker">
<div class="photo">
<div class="img mb-4">
<a href="./assets/gallary/hero-11.jpg" class="test-popup-link">
<img src="./assets/gallary/hero-11.jpg" alt="11" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Gallary Area -->
<!-- FAQ Area -->
<section class="faq mt-5" id="faq">
<div class="container">
<div class="pb-5">
<h1 class="title-h1">Frequently Asked Questions —</h1>
<h3>Your Question Answered</h3>
</div>
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="list-group" id="list-tab" role="tablist">
<a class="list-group-item list-group-item-action active" id="list-basics-list"
data-toggle="list" href="#list-basics" role="tab" aria-controls="basics">
Coronavirus </a>
<a class="list-group-item list-group-item-action" id="list-spread-list"
data-toggle="list" href="#list-spread" role="tab" aria-controls="spread">How it
Spreads ?</a>
<a class="list-group-item list-group-item-action" id="list-protect-list"
data-toggle="list" href="#list-protect" role="tab" aria-controls="protect">How to
Protect Yourself?</a>
<a class="list-group-item list-group-item-action" id="list-test-list" data-toggle="list"
href="#list-test" role="tab" aria-controls="test">Symptoms & Testing</a>
<a class="list-group-item list-group-item-action" id="list-myth-list" data-toggle="list"
href="#list-myth" role="tab" aria-controls="myth">Myth_buster of Coronavirus</a>
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="list-basics" role="tabpanel"
aria-labelledby="list-basics-list">
<!-- Q/A -->
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left" type="button"
data-toggle="collapse" data-target="#collapseOne"
aria-expanded="true" aria-controls="collapseOne">
What is a novel coronavirus?
</button>
</h2>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordionExample">
<div class="card-body">
On February 11, 2020 the World Health Organization announced an
official
name for the disease that is causing the 2019 novel coronavirus
outbreak, first identified in Wuhan China. The new name of this
disease
is coronavirus disease 2019, abbreviated as COVID-19. In COVID-19,
‘CO’
stands for ‘corona,’ ‘VI’ for ‘virus,’ and ‘D’ for disease.
Formerly,
this disease was referred to as “2019 novel coronavirus” or
“2019-nCoV”.
<br>
A novel coronavirus is a new coronavirus that has not been
previously
identified. The virus causing coronavirus disease 2019 (COVID-19),
is
not the same as the coronaviruses that commonly circulate among
humans
and cause mild illness, like the common cold.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed"
type="button" data-toggle="collapse" data-target="#collapseTwo"
aria-expanded="false" aria-controls="collapseTwo">
Why is the disease being called coronavirus disease 2019,
COVID-19?
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo"
data-parent="#accordionExample">
<div class="card-body">
On February 11, 2020 the World Health Organization announced an
official
name for the disease that is causing the 2019 novel coronavirus
outbreak, first identified in Wuhan China. The new name of this
disease
is coronavirus disease 2019, abbreviated as COVID-19. In COVID-19,
‘CO’
stands for ‘corona,’ ‘VI’ for ‘virus,’ and ‘D’ for disease.
Formerly,
this disease was referred to as “2019 novel coronavirus” or
“2019-nCoV”.
There are many types of human coronaviruses including some that
commonly
cause mild upper-respiratory tract illnesses. COVID-19 is a new
disease,
caused be a novel (or new) coronavirus that has not previously been
seen
in humans. The name of this disease was selected following the World
Health Organization (WHO) best practiceexternal icon for naming of
new
human infectious diseases.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed"
type="button" data-toggle="collapse"
data-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
How can people help stop stigma related to COVID-19?
</button>
</h2>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree"
data-parent="#accordionExample">
<div class="card-body">
People can fight stigma and help, not hurt, others by providing
social
support. Counter stigma by learning and sharing facts. Communicating
the
facts that viruses do not target specific racial or ethnic groups
and
how COVID-19 actually spreads can help stop stigma.
</div>
</div>
</div>
</div>
<!-- End Q/A -->
</div>
<div class="tab-pane fade" id="list-spread" role="tabpanel"
aria-labelledby="list-spread-list">
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left" type="button"
data-toggle="collapse" data-target="#collapseOne"
aria-expanded="true" aria-controls="collapseOne">
What is the source of the virus?
</button>
</h2>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordionExample">
<div class="card-body">
Coronaviruses are a large family of viruses. Some cause illness in
people, and others, such as canine and feline coronaviruses, only
infect
animals. Rarely, animal coronaviruses that infect animals have
emerged
to infect people and can spread between people. This is suspected to
have occurred for the virus that causes COVID-19. Middle East
Respiratory Syndrome (MERS) and Severe Acute Respiratory Syndrome
(SARS)
are two other examples of coronaviruses that originated from animals
and
then spread to people. More information about the source and spread
of
COVID-19 is available on the Situation Summary: Source and Spread of
the
Virus.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed"
type="button" data-toggle="collapse" data-target="#collapseTwo"
aria-expanded="false" aria-controls="collapseTwo">
How does the virus spread?
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo"
data-parent="#accordionExample">
<div class="card-body">
This virus was first detected in Wuhan City, Hubei Province, China.
The
first infections were linked to a live animal market, but the virus
is
now spreading from person-to-person. It’s important to note that
person-to-person spread can happen on a continuum. Some viruses are
highly contagious (like measles), while other viruses are less so.
The virus that causes COVID-19 seems to be spreading easily and
sustainably in the community (“community spread”) in some affected
geographic areas. Community spread means people have been infected
with
the virus in an area, including some who are not sure how or where
they
became infected.
Learn what is known about the spread of newly emerged coronaviruses.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed"
type="button" data-toggle="collapse"
data-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Can someone who has had COVID-19 spread the illness to others?
</button>
</h2>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree"
data-parent="#accordionExample">
<div class="card-body">
The virus that causes COVID-19 is spreading from person-to-person.
Someone who is actively sick with COVID-19 can spread the illness to
others. That is why CDC recommends that these patients be isolated
either in the hospital or at home (depending on how sick they are)
until
they are better and no longer pose a risk of infecting others.