-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.html
56 lines (50 loc) · 1.69 KB
/
tables.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<link href="https://fonts.googleapis.com/css?family=Montserrat|Roboto|Roboto+Mono&display=swap" rel="stylesheet">
<title>COVID-19 TRACKER</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='stylefortables.css'>
<link rel="icon" type="image/png" href="smol_logo.png">
</head>
<body>
<div class="wrapper">
<div class="statistic">
<div class="total_case_box">
<h2>Total Cases</h2>
<p id="total_cases"></p>
</div>
<div class="box_wrapper">
<div class="box">
<h2>Total Deaths</h2>
<p id="total_death"> </p>
</div>
<div class="box">
<h2>Total Recoveries</h2>
<p id="total_recovered"> </p>
</div>
<div class="box">
<h2>New Cases</h2>
<p id="new_case"> </p>
</div>
<div class="box">
<h2>New Deaths</h2>
<p id="new_death"> </p>
</div>
</div>
<table id="countries_stat">
<tr>
<th>Country</th>
<th>Cases</th>
<th>Deaths</th>
<th>serious critical</th>
<th>total recovered</th>
</tr>
</table>
</div>
</div>
<script src='indexfortables.js'></script>
</body>
</html>