-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (45 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Climate Gentrification and its Impact on New York City</title>
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Mapbox CSS -->
<link href="https://api.mapbox.com/mapbox-gl-js/v3.3.0/mapbox-gl.css" rel="stylesheet">
<!-- Custom CSS - Ensure it loads last to override other styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Map Container -->
<div id="map" class="mapboxgl-map"></div>
<!-- NUDGE for user to scroll down to learn more -->
<div class="scroll-prompt">
<i class="fa fa-arrow-down"></i> Scroll down and interact with the map!
</div>
<!-- TOGGLE CHAPTERS VISIBILITY -->
<button id="toggle-chapters" class="toggle-chapters">☰ View Map</button>
<!-- Story and navigation content will be dynamically generated by scripts.js -->
<div id="story">
<div class="dark" id="header"></div>
</div>
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/b395f523c2.js" crossorigin="anonymous"></script>
<!-- Mapbox GL JS -->
<script src="https://api.mapbox.com/mapbox-gl-js/v3.3.0/mapbox-gl.js"></script>
<!-- Chart.js -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<!-- Intersection Observer -->
<script src="https://unpkg.com/intersection-observer@0.12.0/intersection-observer.js"></script>
<!-- Scrollama for scrollytelling -->
<script src="https://unpkg.com/scrollama"></script>
<!-- Bootstrap Bundle JS (includes Popper) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom Scripts -->
<script src="js/chapters.js"></script>
<script src="js/layers.js"></script>
</body>
</html>