-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnys-data.html
46 lines (44 loc) · 2.05 KB
/
nys-data.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>History of the Free School Society</title>
<!-- CSS imports -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.8.0/dist/leaflet.css" integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ==" crossorigin=""/>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<link rel="stylesheet" href="stylesheet.css">
<!-- JS imports -->
<script src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js" integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ==" crossorigin=""></script>
</head>
<body>
<div class="w3-top">
<div class="w3-row w3-padding w3-black">
<div class="w3-col s3">
<a href="index.html" class="w3-button w3-block w3-black">HOME</a>
</div>
<div class="w3-col s3">
<a href="index.html#about" class="w3-button w3-block w3-black">ABOUT</a>
</div>
<div class="w3-col s3">
<a href="nys-data.html" class="w3-button w3-block w3-black">MAP</a>
</div>
<div class="w3-col s3">
<a href="https://github.com/zmuhls/CommonSchoolMap" class="w3-button w3-block w3-black">REPO</a>
</div>
</div>
</div>
<br>
<div id="map"></div>
<div class="container"></div>
<h4>NYC Common Schools</h4>
<hr>
<div id="sidebar"></div>
<hr>
<!-- JS scripts at the end -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="geojson.js"></script>
<script src="nys-data.js"></script>
</body>
</html>