-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
46 lines (31 loc) · 1.36 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
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<title>Neighborhood Map</title>
<meta name="description" content="Udacity - Fullstack Web Developer Nanodegree - The Frontend: Javascript and AJAX - Neighborhood Map Project">
<meta name="keywords" content="Udacity, Fullstack, Web, Developer, Nanodegree, Frontend, Javascript, AJAX, Neighborhood, Map, Project, Google, Yelp, API, Foursquare, Asynchronous">
<meta name="author" content="Glen Bland">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<!-- style sheets -->
<link rel="stylesheet" href="css/style.css">
<!-- javascripts -->
<script src="js/script.js"></script>
</head>
<body>
<div class="container">
<div class="options-box">
<h1>Find Your New NYC Home</h1>
<div>
<input id="show-listings" type="button" value="Show Listings">
<input id="hide-listings" type="button" value="Hide Listings">
</div>
</div> <!-- end of div class="options-box" -->
<div id="map"></div>
</div> <!-- end of div class="container" -->
<!-- google maps initMap callback script-->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDqQry8xCE6UqTuRaXy1OQnIOhZa0AIo2A&v=3&callback=initMap">
</script>
</body>
</html>