-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (31 loc) · 1013 Bytes
/
index.html
File metadata and controls
46 lines (31 loc) · 1013 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Studio Week 3</title>
<!-- Add Mapbox GL JS JavaScript file -->
<!-- Add in the Mapbox GL JS CSS file -->
<!-- Add CSS styling info for the map -->
<style type="text/css">
</style>
<!-- Adding styling info for page layout by reading in a CSS file -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Studio Week 3 <br> Choropleth Map with Mapbox </h1>
<!-- Add multiple pages to web page-->
<!-- active class displays the grey box around current page-->
<ul>
<li><a class="active" href="index.html" target="_self">Output 1</a></li>
<li><a href="mapbox-interaction.html" target="_self">Output 2</a></li>
<li><a href="mapbox-turfjs.html" target="_self">Output 3</a></li>
</ul>
<br>
<!-- Add a div to give the map somewhere to go -->
<script>
// Add your access token
// Create a variable called "map" to house your map
// Add a legend
// Add the information window
</script>
</body>
</html>