-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (94 loc) · 4.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="assets/logos/favicon.png">
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="stylesheet" href="index.css">
<title>covid-19</title>
</head>
<body>
<header>
<span class="logo"><img src="assets/logos/dark-logo.png" alt="Site Logo" width="90" height="90"></span>
</header>
<div id="load" class="ldio-633k9nv1itq">
<div></div>
</div>
<div id="myDiv">
<section class="main">
<h1>COVID-19 CORONAVIRUS PANDEMIC</h1>
<p class="last-update-section">Last Update: <span class="last-update"></span></p>
<h2 class="confirmed-cases-heading">Coronavirus Cases</h2>
<span class="confirmed-cases"></span>
<h2 class="recovered-cases-heading">Recovered</h2>
<span class="recovered-cases"></span>
<h2 class="death-cases-heading">Deaths</h2>
<span class="death-cases"></span>
<div class="summary container row">
<div class="active-cases-section col s6 border pt-4 mr-2">
<h4 class="text-darken-2">Active Cases</h4>
<span class="active-cases flow-text"></span>
<p>Currenty Affected Patients</p>
</div>
<div class="closed-cases-section col s6 border p-4 ml-2">
<h4 class="blue-text text-darken-2">Closed Cases</h4>
<span class="closed-cases flow-text">N/A</span>
<p>Cases which had an outcome</p>
</div>
<div class="casesPM-section col s6 border p-4 ml-2">
<!-- <div class="heading-border">
<h4 class="text-darken-2">Cases Per One Million</h4>
</div>
<span class="casesPM flow-text"></span> -->
<!-- <p>Cases which had an outcome</p> -->
</div>
<div class="deathsPM-section col s6 border p-4 ml-2">
<!-- <h4 class="text-darken-2">Deaths Per One Million</h4>
<span class="deathsPM flow-text"></span> -->
<!-- <p>Cases which had an outcome</p> -->
</div>
</div>
<!-- country vise data table-->
<h5>Confirmed Cases and Deaths by Country, Territory, or Conveyance</h5>
<p class="brief-paragraph">The coronavirus COVID-19 is affecting <span class="countries-count"></span> <span class="bold">countries and territories</span> around the world and 2 international conveyances.</p>
<div class="search-field">
<span id="search-text">Search:</span>   <input class="search-box" type="text" value="">
</div>
<table class="table-sortable table-responsive">
<thead class="table-heading" id="tb">
<tr>
<th><a>Country</a></td>
<th><a>Total Cases</a></th>
<!-- <th><a>Today Cases</a></th> -->
<th><a>Total Deaths</a></th>
<!-- <th><a>Today Deaths</a></th> -->
<th><a>Total Recovered</a></th>
<th><a>Active</a></th>
<th><a>Fatility Rate</a></th>
<!-- <th><a>Critical</a></th>
<th><a>Cases / 1M</a></th>
<th><a>Death / 1M</a></th>
<th><a>Tests</a></th>
<th><a>Tests / 1M</a></th> -->
</tr>
</thead>
<tbody class="fetch-content">
<tr>
<td>World</td>
</tr>
</tbody>
<tbody class="bottom-sum">
<tr>
<td>World</td>
</tr>
</tbody>
</table>
</section>
<footer>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>