-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (21 loc) · 920 Bytes
/
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
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>COVID-19 Tracker</title>
<link rel="stylesheet" type="text/css" href="styles/global.css">
<link rel="stylesheet" type="text/css" href="styles/bootstrap.min.css">
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/bootstrap.min.js"></script>
<script type="text/javascript" src="scripts/d3.v4.min.js"></script>
<script type="text/javascript" src="scripts/line.js" charset="utf-8"></script>
</head>
<body>
<h1>COVID-19 Tracker</h1>
<label for="countries">Choose your country:</label>
<select id="countries" onchange="changeCountry()">
</select>
<div id="line">
<h3>Disease Chart for <span id="country"></span></h3>
</div>
<div id="credits">Dataset provided by GitHub user <a href="https://github.com/pomber/covid19">Pomber</a>.</div>
</body>