-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (26 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>COVID-19 Vaccination Stories</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="#">
<link rel="stylesheet" href="styles/style.css">
<!-- Leaflet's css-->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<!-- Leaflet's JavaScript-->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- add scrollama -->
<script src="https://unpkg.com/intersection-observer"></script>
<!-- scrollama -->
<script src='./js/scrollama.js'></script>
<!-- note: we are using a customized version of scrollama that the dev made here:
https://github.com/russellgoldenberg/scrollama/issues/122 -->
</head>
<body>
<header>Welcome to COVID-19 Vaccination Stories</header>
<div id="contents"></div>
<div id="map"></div>
</div>
<script src="js/init.js"></script>
</body>
</html>