-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (50 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CovidPH</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="background">
<div id="banner">
<h1 id="greet">Philippine Covid-19 Monitoring</h1>
<br>
<div id="container">
<div class="col2 row1"><h3 id="MONTH" class="text">Fetching...</h3></div>
</div>
<br>
<br>
<br>
<table>
<tr>
<td class="text2">Total confirmed:</td>
<td id="confirmed" class="text">Fetching...</td>
</tr>
<tr>
<td class="text2">Total recovered:</td>
<td id="recovered" class="text">Fetching...</td>
</tr>
<tr>
<td class="text2">Total deaths:</td>
<td id="deaths" class="text">Fetching...</td>
</tr>
<tr>
<td class="text2">New confirmed:</td>
<td id="newconfirmed" class="text">Fetching...</td>
</tr>
<tr>
<td class="text2">New recovered:</td>
<td id="newrecovered" class="text">Fetching...</td>
</tr>
<tr>
<td class="text2">New deaths:</td>
<td id="newdeaths" class="text">Fetching...</td>
</tr>
</table>
</div>
</div>
<script type="text/javascript" src="script.js">
</script>
</body>
</html>