forked from nielsenjared/pictorial-st-louis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Pictorial St. Louis</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- load jQuery -->
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<!-- load Font-Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<!-- Load leaflet.extra-markers from local directory -->
<script src="markers/leaflet.extra-markers.min.js"></script>
<link rel="stylesheet" href="markers/leaflet.extra-markers.min.css">
<link rel="stylesheet" href="style.css">
<style>
html, body, #map {
background-color: #fff
}
</style>
</head>
<body>
<div id="title" class="title-text">
<h3>Pictorial St. Louis</h3>
<small>Scroll <i class="fa fa-chevron-down"></i></small>
</div>
<div id="narration">
<div id="contents">
<div id="space-at-the-top" class="space-at-the-top"></div>
</div>
</div>
<div id="map"></div>
<script src="rastercoords.js"></script>
<script src="index.js"></script>
</body>
</html>