-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (43 loc) · 1.71 KB
/
index.html
File metadata and controls
74 lines (43 loc) · 1.71 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Seymour's Favorite Spots</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css">
</head>
<body>
<div id="sideBar">
<div>
<h1> Where's Seymour? </h1>
<p> Here are some of the places he likes to go </p>
<ul id="listOfPlaces">
<li class="place" id="beach"> beach </li>
<li class="place" id="mkt"> farmers market </li>
<li class="place" id="meetup"> frenchie meetup </li>
<li class="place" id="bday"> littermates </li>
<li class="place" id="camping"> camping </li>
<li class="place" id="soccer"> soccer!! </li>
<li class="place" id="fort"> the fort </li>
<li class="place" id="licH2o"> waterfront dog run </li>
</ul>
<p></p>
<p> Click on the <img src= "images/Seymour_icon.png" width="36" height="36" style="vertical-align:middle"> to see if Seymour is there </p>
</div>
<p class="jackpot"> There he is! </p>
<div id="image"> </div>
<p class="tryAgain"> Hmmm, he's not there. Try looking somewhere else </p>
<div id="image">
</div>
</div>
<div id="bottomBar">
<p> <a href="http://instagram.com/moreseymour">Follow @moreseymour on Instagram </a> </p>
</div>
<div id="map"> </div>
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<!-- this is a library for easy incorporation of geoJSON into the map -->
<script src="https://rawgit.com/calvinmetcalf/leaflet-ajax/master/dist/leaflet.ajax.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>