-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (22 loc) · 951 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flatiron Phase 1 Project</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<!-- Dynamic Google Map script loading with js-api-loader via umd unpkg link: -->
<script src="https://unpkg.com/@googlemaps/[email protected]/dist/index.min.js"></script>
<script src="./src/main.js" type="module"></script>
</head>
<body>
<h1>Put Your Favorite Place On the Map</h1>
<h2>(within the continental US)</h2>
<h3>Start typing an address or place and<br>select a suggestion from the dropdown</h3>
<input id="autocomplete" name="autocomplete" placeholder="Miami Beach" type="text" size="60" autofocus/>
<p id="alert"></p>
<div id="map"></div>
<div id="photo-gallery"></div>
</body>
</html>