-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (92 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COVID19 — Uganda Dashboard</title>
<link rel="icon" href="img/fav.png">
<link rel="stylesheet" href="css/chartist.css">
<link rel="stylesheet" href="css/mvp.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" />
</head>
<body>
<a class="github-fork-ribbon left-top fixed" href="https://github.com/as1ndu/covidug" data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub</a>
<header>
<nav>
<a>
<img src="img/coronavirus.png" width="50%" height="50%">
</a>
<h1 style="color: red;">covidUG</h1>
<ul>
<li><a href="#resources">Resources</a></li>
</ul>
</nav>
<p>Realtime Statistical Updates on state of COVID19 in Uganda**</p>
</header>
<main>
<aside>
<h2>Active Infections (Weekly Overview).</h2>
<section id="chart">
</section>
</aside>
<section>
<h3></h3>
<article>
<aside>
<h1 class="teal">😷 Active cases</h1>
<p id="active-cases" class="counter">Loading..</p>
</aside>
</article>
<article>
<aside>
<h1 class="teal">👌 Recovered</h1>
<p id="recovered" class="counter">Loading..</p>
</aside>
</article>
<article>
<aside>
<h1 class="teal">💀 Dead</h1>
<p id="dead" class="counter">Loading..</p>
</aside>
</article>
</section>
<article id="resources">
<h2>Resources.</h2>
<p>
<h4>🚨 Toll free emergency phone lines</h4>
<ul>
<li><a href="tel:919">919</a></li>
<li><a href="tel:0800-100-066">0800-100-066</a></li>
<li><a href="tel:0800-303-033">0800-303-033</a></li>
<li><a href="tel:0800-203-033">0800-203-033</a></li>
<li><a href="whatsapp://send?text=Hello!&phone=+256-323-200-660">0323-200-660 (WhatsApp)</a></li>
</ul>
</p>
<p>
<h4>🎓 Educational Material</h4>
<ul>
<li><a href="https://www.health.go.ug/covid/be-ready-for-covid-19/">How to be ready for COVID-19</a></li>
<li><a href="https://www.health.go.ug/covid/category/dos-and-donts/">Do's & Don'ts of the COVID-19 pandemic</a></li>
</ul>
</p>
<p>
<h4>💽 Dataset</h4>
<ul>
<li><a href="https://pomber.github.io/covid19/timeseries.json">Download the COVID-19 Dataset [json]</a></li>
</ul>
</p>
</article>
</main>
<footer>
Made with ❤ by <a href="https://twitter.com/as1ndu" style="color: antiquewhite; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">@as1ndu</a> in Kampala.
<p>
<small>
** Statistical data is from <a href="https://github.com/CSSEGISandData/COVID-19/">John Hopkins</a> timeseries is parsed by <a href="https://github.com/pomber/covid19">Pomber</a>
</small>
</p>
</footer>
<script src="js/chartist.min.js"> </script>
<script src="js/script.js"></script>
</body>
</html>