-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
35 lines (29 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126018270-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-126018270-2');
</script>
<title>Covid-19 India Live Map</title>
<meta name="description" content="A live map that visualizes the spread of Corona Virus (COVID-19) in Indian states.">
<meta name="keywords" content="Corona,COVID-19,India,Map,Track">
<meta name="author" content="Shreyas Gupta">
<link rel="icon" type="image/png" href="img/favicon.png"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.16/p5.min.js" type="text/javascript"></script>
<script src="https://unpkg.com/[email protected]/dist/mappa.js" type="text/javascript"></script>
<script src="script.js"></script>
</head>
<style>
body {
margin: 0;
overflow: hidden;
}
</style>
<body>
</body>
</html>