-
Notifications
You must be signed in to change notification settings - Fork 0
/
covid.html
287 lines (260 loc) · 13.9 KB
/
covid.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="icon" href="./assets/images/favicon.png" type="image/gif" sizes="64x64">
<link rel="shortcut icon" href="./assets/images/favicon.png" type="image/gif" sizes="64x64">
<link rel="apple-touch-icon" href="./assets/images/favicon.png" type="image/gif">
<title>Covid-19 | E-Health Care</title>
<!-- Google Font CDN -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!-- Main CSS -->
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/covid.css">
</head>
<body>
<!-- Navbar-Start -->
<div class="navbar-shadow">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="./assets/images/logo.svg" alt="" width="75%" height="auto">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 mx-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="heart-checkup.html">Heart Checkup</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="covid.html"> <span
class="text-danger">Covid-19</span></a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html#aboutUs">About Us</a>
</li>
</ul>
<!-- Login-Button -->
<!-- <a href="./signup.html"><button class="btn signup-btn px-4">Sign Up</button></a> -->
<!-- User-Profile -->
<div class="d-flex align-items-center btn-group">
<button type="button" class="btn dropdown-toggle" data-bs-toggle="dropdown"
aria-expanded="false">
<img class="user-img" src="./assets/images/user.png" alt="user">
<span class="user-first-name">Shahriar</span>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="PublicProfile.html">profile</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li>
<a type="button" class="btn dropdown-item" data-bs-toggle="modal"
data-bs-target="#staticBackdrop">
Log Out
</a>
</li>
</ul>
<!-- Log out Popup -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static"
data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content modal-wrapper border-0">
<div class="modal-top">
<i class="danger-icon fas fa-exclamation-triangle"></i>
<div>
<h5 class="modal-heading">Log out from this session</h5>
<p class="modal-description">Are you sure you want to log out? All of
your data
will be temporary
removed. You have to sign in again.</p>
</div>
</div>
<div class="modal-bottom">
<button type="button" class="btn btn-outline-primary mx-3"
data-bs-dismiss="modal">Cancel</button>
<a href="http://">
<button type="button" class="btn btn-custom-danger">
Log out
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
<!-- Navbar-End -->
<section class=" bg-light">
<div class="container">
<div class="row">
<!-- parent-1-start -->
<div class="col-12 col-lg-6">
<h4 class="feature-heading">
Coronavirus disease (COVID-19)
</h4>
<h6 class="feature-description">
The best way to prevent and slow down transmission is to be well informed about the COVID-19
virus, the disease it causes and how it spreads. Protect yourself and others from infection by
washing your hands or using an alcohol based rub frequently and not touching your face.
</h6>
</div>
<!-- parent-1-end -->
<!-- parent-2-start -->
<div class="col-12 col-lg-6">
<img class="img-fluid" src="./assets/images/Preventive measures when you get home-pana.svg" alt="">
</div>
<!-- parent-2-end -->
</div>
</div>
</section>
<section>
<div class="container">
<h2 class="text-center">COVID-19 Dashboard</h2>
<iframe src="https://idare.maps.arcgis.com/apps/MapSeries/index.html?appid=e621575c559e4b5185b56382071ed184"
width="100%" height="600px"></iframe>
</div>
</section>
<section class="">
<div class="container">
<div class="row">
<div class="col-8">
<iframe src="https://public.domo.com/cards/bWxVg" width="100%" height="600" marginheight="0"
marginwidth="0" frameborder="0"></iframe>
</div>
<div class="col-4">
<h4 class="mt-4 text-muted">Data filter</h4>
<div class="col-6 mt-custom-7 w-100">
<!-- <h6 class="text-center">Total Death</h6> -->
<div class="btn-services bl-custom-red position-relative">
<h5>1,547,176.00</h5><span
class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-custom-red">
Total Death
</div>
</div>
<div class="col-6 mt-5 w-100">
<div class="btn-services bl-custom-blue position-relative">
<h5>6,347,100.00</h5><span
class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-custom-blue">
Total Tested
</div>
</div>
<div class="col-6 mt-5 w-100">
<div class="btn-services bl-custom-green position-relative">
<h5>2,100,126.00</h5><span
class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-custom-green">
Total Recovered
</div>
</div>
<div class="col-6 mt-5 w-100">
<div class="btn-services bl-custom-yellow position-relative">
<h5>9,747,400.00</h5><span
class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-warning">
New Infected
</div>
</div>
</div>
</div>
</div>
</section>
<!-- footer start -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="footer-about">
<div class="footer-logo">
<a href="index.html"><img src="./assets/images/logo-white.svg" alt=""></a>
</div>
<p>E-Health Care is a dream that turned into a tech based startup, a business with a great
purpose to create positive impacts in peoples' lives.</p>
<!-- Add Social Icon -->
<div>
<a href="example.com" target="_blank"><span class="social-icons"><i class="fab fa-facebook"
style="color:#30629d;"></i></span></a>
<a href="example.com" target="_blank"><span class="social-icons"><i class="fab fa-twitter"
style="color:#00A7E6;"></i></span></a>
<a href="example.com" target="_blank"><span class="social-icons"><i class="fab fa-linkedin"
style="color:#0073B1;"></i></span></a>
<a href="example.com" target="_blank"><span class="social-icons"><i class="fab fa-instagram"
style="color:#D32C86;"></i></span></a>
</div>
</div>
</div>
<div class="col-lg-3 offset-lg-1 col-md-3 col-6">
<div class="footer-widget">
<h6>Information</h6>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">E-Sheba</a></li>
<li><a href="#">Doctor Protal</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-3 col-6">
<div class="footer-widget">
<h6>Quick Link</h6>
<ul>
<li><a href="#">FAQs</a></li>
<li><a href="#">My Account</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Notice</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-12 col">
<div class="footer-widget">
<h6>Important</h6>
<ul>
<li><a href="#">e-Sastho Premium</a></li>
<li><a href="#">e-Sastho Plus</a></li>
<li><a href="#">Senior Citizen Care</a></li>
<li><a href="#">Personal & Family Care</a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<div class="footer-copyright-text">
<p>© Copyright <script>
document.write(new Date().getFullYear());
</script> | <a href="index.html"> E-Health Care </a> | All Rights Reserved</p>
</div>
</div>
</div>
</div>
</footer>
<!-- footer end -->
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
<!-- Main JS -->
<script type="text/javascript" src="text.json"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>