-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (81 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>COVID-19 Tracking Web Application for the Modern World</title>
<link rel="icon" href="./assets/img/icon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<link rel="preload" href="./assets/js/script.js" as="script">
<meta name="description" content="COVID-19 Tracking Web Application V2.0, an upgrade to multiple-award winning project!">
<meta property="og:title" content="COVID-19 Tracking Web Application for the Modern World">
<meta property="og:url" content="https://COVID-19.WHOISbinit.me">
<meta property="og:image" content="./assets/img/open-graph.png">
<meta property="og:type" content="website">
<meta property="og:site_name" content="COVID-19 Tracking Web Application V2.0" />
<meta property="og:locale" content="en_US" />
<meta property="og:description" content="COVID-19 Tracking Web Application V2.0, an upgrade to multiple-award winning project!">
<link rel="apple-touch-icon" sizes="128x128" href="./assets/img/icon.png">
<link rel="manifest" href="/COVID-19.webmanifest">
<link rel="mask-icon" href="./assets/img/icon.png" color="#1F2739">
<meta name="msapplication-TileColor" content="#1F2739">
<meta name="theme-color" content="#1F2739">
</head>
<body>
<h1>COVID-19 <span class="yellow">Tracking Web Application</span></h1>
<h2>This utility is brought to you by <strong>U-TEC 31337</strong>.</h2>
<table class="recordTable">
<thead>
<tr>
<th><h1>Statistics</h1></th>
<th><h1>Global</h1></th>
<th><h1>Local</h1></th>
</tr>
</thead>
<tbody>
<tr>
<td>Total Active</td>
<td><span id="ta1"></span></td>
<td><span id="ta2"></span></td>
</tr>
<tr>
<td>New Confirmed</td>
<td><span id="nc1"></span></td>
<td><span id="nc2"></span></td>
</tr>
<tr>
<td>New Deaths</td>
<td><span id="nd1"></span></td>
<td><span id="nd2"></span></td>
</tr>
<tr>
<td>Total Confirmed</td>
<td><span id="tc1"></span></td>
<td><span id="tc2"></span></td>
</tr>
<tr>
<td>Total Serious</td>
<td><span id="ts1"></span></td>
<td><span id="ts2"></span></td>
</tr>
<tr>
<td>Total Recovered</td>
<td><span id="tr1"></span></td>
<td><span id="tr2"></span></td>
</tr>
<tr>
<td>Total Unresolved</td>
<td><span id="tu1"></span></td>
<td><span id="tu2"></span></td>
</tr>
<tr>
<td>Total Deaths</td>
<td><span id="td1"></span></td>
<td><span id="td2"></span></td>
</tr>
</tbody>
</table>
<script type="text/javascript" src="./assets/js/script.js" defer></script>
</body>
</html>