-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
31 lines (22 loc) · 826 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Cafétography</title>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/emoji.png">
<link href="https://fonts.googleapis.com/css?family=Patrick+Hand+SC" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
</head>
<body>
<div class="title">
<h1>Cafétography</h1>
<div id="neighborhoods"></div>
</div>
<div id="map"></div>
<script src="js/scripts.js"></script>
</body>
</html>