-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
28 lines (28 loc) · 968 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
25
26
27
28
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>Corocoro - COVID-19 Virus Statistic</title>
<link rel="shortcut icon" href="./virus.png">
<link rel="stylesheet" href="css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
</head>
<body>
<div id="title">
COROCORO
</div>
<div id="sub-title">
COVID-19 Virus Statistic
</div>
<div id="legends">
</div>
<div id="map"></div>
<div id="last-update"></div>
<div class="copyright">
For education purpose only! Build with <3. Visit our <a href="https://github.com/heryvandoro/corocoro" target="_blank">github repository here</a>
</div>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="js/utils.js"></script>
<script src="js/app.js"></script>
</body>
</html>