-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
439 lines (435 loc) · 17.1 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- title -->
<title>Cov19Strain</title>
<!-- Bootstrap Link -->
<link rel="stylesheet" href="/css/bootstrap.min.css" />
<!-- font awesome -->
<script src="/js/all.js"></script>
<!-- google fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- aos css-->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- main css-->
<link rel="stylesheet" href="./css/style.css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicon_io/favicon-16x16.png"
/>
<link rel="manifest" href="./assets/favicon_io/site.webmanifest" />
<!---------------------- CDNs----------------- -->
</head>
<body>
<section id="body" class="d-none">
<!-- NAVBAR -->
<nav class="navbar navbar-expand-sm navbar-light shadow-sm bg-white px-2">
<!-- navbar brand -->
<a href="./index.htm" class="navbar-brand text-primary ml-2"
><img src="./assets/logo.png" alt="" />
<strong>Cov19Strain</strong></a
>
<!-- nav toggler -->
<button
class="navbar-toggler p-2 m-2"
type="button"
data-toggle="collapse"
data-target="#navbarLinks"
aria-controls="navbarLinks"
aria-expanded="false"
aria-label="Toggle navigation"
>
<div class="animated-icon3">
<span></span><span></span><span></span>
</div>
</button>
<!-- nav links -->
<div id="navbarLinks" class="navbar-collapse collapse text-center">
<ul class="navbar-nav text-uppercase mx-auto">
<li class="nav-item mx-2 active">
<a href="#" class="nav-link">Home</a>
</li>
<li class="nav-item mx-2">
<a href="#symptoms" class="nav-link">Symptoms</a>
</li>
<li class="nav-item mx-2">
<a href="#protection" class="nav-link">Protection</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li id="last-update" class="nav-item mx-2">
Updated: <span class="updated-time"></span>
</li>
</ul>
</div>
</nav>
<!-- FIRST SECTION -->
<header id="covid-19-tracker" class="py-4">
<div class="container">
<div class="row">
<div class="col"><h4>COVID-19 Tracker</h4></div>
</div>
<div class="row bg-white p-2 rounded">
<!-- total cases -->
<div class="col-md-6 col-lg-3 pos-rel">
<div class="text-center total-cases p-2 m-2 rounded pos-rel">
<h6>Total Cases</h6>
<h3 class="text-primary" id="totalConfirmed">296,200,000</h3>
<p class="text-muted" id="newConfirmed">+3400</p>
</div>
<div class="total-cases tracker-board-circle"></div>
</div>
<!-- active cases -->
<div class="col-md-6 col-lg-3 pos-rel">
<div class="text-center active-cases p-2 m-2 rounded pos-rel">
<h6>Active Cases</h6>
<h3 class="text-orange" id="totalActive">296,200,000</h3>
<p class="text-muted" id="newActive">+3400</p>
</div>
<div class="active-cases tracker-board-circle"></div>
</div>
<!-- recovered -->
<div class="col-md-6 col-lg-3 pos-rel">
<div class="text-center recovered p-2 m-2 rounded pos-rel">
<h6>Recovered</h6>
<h3 class="text-success" id="totalRecovered">296,200,000</h3>
<p class="text-muted" id="newRecovered">+3400</p>
</div>
<div class="recovered tracker-board-circle"></div>
</div>
<!-- total death -->
<div class="col-md-6 col-lg-3 pos-rel">
<div class="text-center total-death p-2 m-2 rounded pos-rel">
<h6>Total Deaths</h6>
<h3 class="text-danger" id="totalDeath">296,200,000</h3>
<p class="text-muted" id="newDeath">+3400</p>
</div>
<div class="total-death tracker-board-circle"></div>
</div>
</div>
</div>
</header>
<section id="top-affected-countries" class="py-2">
<div class="container bg-white">
<div class="row p-2">
<div class="col-lg-8">
<div class="row">
<div class="col-12">
<h3>Top Affected Countries</h3>
<p class="text-muted">
Updated: <span class="updated-time"></span>
</p>
</div>
</div>
<div class="row p-2">
<div class="col-md-6 rounded border py-2">
<h5 class="text-muted"><strong>Countries</strong></h5>
<ul class="list-group" id="top-cases"></ul>
</div>
<div class="col-md-6 py-2" id="country"></div>
</div>
</div>
<div class="d-none d-lg-inline-block col-lg-4">
<img src="./assets/map.png" alt="World map" class="img-fluid" />
</div>
</div>
</div>
</section>
<!-- symptoms -->
<section id="symptoms" class="py-5">
<div class="container">
<div class="row">
<div class="col-md-8">
<h5 class="text-danger my-3">
<span class="rounded-pill py-2 px-4 total-death">
Corona Virus Symptoms</span
>
</h5>
<h1>What are the Symptoms?</h1>
<p class="line-height text-justify">
People may be sick with the virus for 1 to 14 days before
developing symptoms. The most common symptoms of coronavirus
disease (COVID-19) are fever, tiredness, and dry cough. Most
people (about 80%) recover from the disease without needing
special treatment. More rarely, the disease can be serious and
even fatal. Older people, and people with other medical
conditions (such as asthma, diabetes, or heart disease), may be
more vulnerable to becoming severely ill.
</p>
<div class="bg-white p-3 rounded my-2 shadow-sm">
<h5><strong> Most Common Symptoms</strong></h5>
<div class="text-muted">
<span class="mr-3 d-inline-block"
><i
class="fa fa-check-circle text-muted"
aria-hidden="true"
></i>
Dry Cough
</span>
<span class="mr-3 d-inline-block"
><i
class="fa fa-check-circle text-muted"
aria-hidden="true"
></i>
Fever
</span>
<span class="mr-3 d-inline-block"
><i
class="fa fa-check-circle text-muted"
aria-hidden="true"
></i>
Tiredness
</span>
</div>
</div>
<div class="bg-white p-3 rounded my-2 line-height shadow-sm">
<h5><strong> Less Common Symptoms</strong></h5>
<div class="text-muted">
<span class="mr-3 d-inline-block"
><i
class="fas fa-check-circle text-muted mr-1"
aria-hidden="true"
></i>
Aches and Pains
</span>
<span class="mr-3 d-inline-block"
><i
class="fas fa-check-circle text-muted mr-1"
aria-hidden="true"
></i>
Sore throat
</span>
<span class="mr-3 d-inline-block"
><i
class="fas fa-check-circle text-muted mr-1"
aria-hidden="true"
></i>
Diarrhoea
</span>
<span class="mr-3 d-inline-block"
><i
class="fas fa-check-circle text-muted mr-1"
aria-hidden="true"
></i>
Conjuctivitis
</span>
<span class="mr-3 d-inline-block"
><i
class="fas fa-check-circle text-muted mr-1"
aria-hidden="true"
></i>
Headache
</span>
<br />
<span class="mr-3 d-inline-block"
><i
class="fas fa-check-circle text-muted mr-1"
aria-hidden="true"
></i>
Loss of Taste or Smell
</span>
<span class="mr-3 d-inline-block"
><i
class="fas fa-check-circle text-muted mr-1"
aria-hidden="true"
></i>
A rash on skin or discolouration of fingers or toes
</span>
</div>
</div>
<div class="bg-white p-3 rounded my-2 shadow-sm line-height">
<h5><strong> Serious Symptoms</strong></h5>
<div class="text-muted">
<span class="mr-3 d-inline-block">
<i
class="fa fa-check-circle text-muted"
aria-hidden="true"
></i>
Difficulty breathing or shortness of death
</span>
<span class="mr-3 d-inline-block">
<i
class="fa fa-check-circle text-muted"
aria-hidden="true"
></i>
Chest pain or pressure
</span>
<span class="mr-3 d-inline-block">
<i class="fas fa-check-circle"></i>
Loss of speech or movement
</span>
</div>
</div>
</div>
<div class="col-md-4 d-none d-md-inline-block text-center">
<img src="./assets/doctor.png" alt="Doctor" class="img-fluid" />
</div>
</div>
</div>
</section>
<!-- protection -->
<section id="protection" class="py-5">
<div class="container bg-white py-5 pr-3 rounded">
<div class="row">
<div class="col-md-5 d-none d-md-block text-lg-center">
<img src="./assets/mask-man.png" alt="mask man" class="" />
</div>
<div class="col-md-7">
<h1>How can I protect myself from Covid-19?</h1>
<p class="line-height text-justify">
Coronavirus disease spreads primarily through contact with an
infected person when they cough or sneeze. It also spreads when
a person touches a surface or object that has the virus on it,
then touches their eyes, nose, or mouth.
</p>
<h5 class="my-3">
What should <span class="text-success"> I do?</span>
</h5>
<div class="row pt-3 mx-auto text-center">
<div
class="col-md-4 col-lg-3 border rounded text-center pt-3 mx-auto my-2"
>
<img src="./assets/facemask.png" alt="" class="img-fluid" />
<h6 class="py-3">Wear a facemask</h6>
</div>
<div
class="col-md-4 col-lg-3 border rounded text-center pt-3 mx-auto my-2"
>
<img src="./assets/facetouch.png" alt="" class="img-fluid" />
<h6 class="py-3">Don't touch your face</h6>
</div>
<div
class="col-md-4 col-lg-3 border rounded text-center pt-3 mx-auto my-2"
>
<img src="./assets/handshake.png" alt="" class="img-fluid" />
<h6 class="py-3">Avoid handshake</h6>
</div>
</div>
<div class="row pb-3 mx-auto text-center">
<div
class="col-md-3 border rounded text-center pt-3 mx-auto my-2"
>
<img src="./assets/distancing.png" alt="" class="img-fluid" />
<h6 class="py-3">Keep safe distance</h6>
</div>
<div
class="col-md-3 border rounded text-center pt-3 mx-auto my-2"
>
<img src="./assets/lockdown.png" alt="" class="img-fluid" />
<h6 class="py-3">Stay at home if you can</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<footer id="footer" class="pos-rel">
<div class="container-fluid bg-white">
<div class="row p-5">
<div class="col-md-5">
<div class="text-primary">
<img src="./assets/logo.png" alt="logo" />
<span class="text-primary">COV19Strain</span>
</div>
<div class="source mt-3">
<h6 class="text-primary"><strong> Source:</strong></h6>
<p class="text-justify line-height">
The infos on this this webpage were crawled from WHO, images
were downloaded from Pixaybay and Pexels, Icons were
downloaded from Iconfinder and Flaticons.
</p>
</div>
</div>
<div class="col-md-3 mx-auto">
<h5 class="text-primary"><strong>Useful Links</strong></h5>
<div class="links">
<a
href="https://who.int/emergencies/diseases/novel-coronavirus-2019"
target="_balnk"
><p>Who Information</p></a
>
<a
href="https://en.wikipedia.org/wiki/COVID-19_pandemic_in_Nigeria"
target="_balnk"
><p>Covid 19 Wikipedia</p></a
>
<a
href="https://google.com/search?q=world+news+on+covid+19&oq=world+new&aqs=chrome.0.69i59j69i57.9116j0j9&sourceid=chrome&ie=UTF-8"
target="_blank"
><p>World News on Covid 19</p></a
>
</div>
</div>
<div class="col-md-3">
<h5 class="text-primary">
<strong>Emergency Number to call</strong>
</h5>
<p>+2348030000000, 5739 00030300</p>
</div>
<div class="footer-circle"></div>
</div>
</div>
</footer>
</section>
<section id="loading" class="bg-white pos-abs">
<div class="container my-5">
<div class="row my-5">
<div class="col-md-6 mx-auto text-center align-items-center my-5">
<div class="lds-hourglass"></div>
</div>
</div>
</div>
</section>
<div class="attribution">
Developed with <span class="text-danger">♥</span> by
<a href="https://sirphenom.github.io">Ali Abdulsamad</a>.
</div>
<!-- jQuery -->
<!-- <script src="/js/jquery-3.4.1.min.js"></script> -->
<!-- Bootstrap js -->
<!-- <script src="/js/bootstrap.min.js"></script> -->
<!---------------------- CDNs----------------- -->
<!-- ajax CDN -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<!-- jQuery CDN -->
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<!-- BootstrapJS CDN -->
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<!-- aos js -->
<!-- <script src="https://unpkg.com/[email protected]/dist/aos.js"></script> -->
<!-- my scripts -->
<script src="./js/ui.js"></script>
<script src="./js/script.js"></script>
</body>
</html>