-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>NYC List</title>
<meta name="description" content="Find three things any New Yorker on the go would need: free WiFi hotspot, public restrooms, and subway entrances">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<header>
<section class="logo">NYC List</section>
<nav>
<ul>
<li id="wifi" class="selected"><img src="images/wifi.svg">WiFi<br>Hotspot</li>
<li id="subway"><img src="images/turnstile.svg">Subway<br>Entrance</li>
<li id="restroom"><img src="images/toilet.svg">Public<br>Restroom</li>
</ul>
</nav>
</header>
<div id="map"></div>
<footer>
<div id="currentLoc"></div>
<div id="searchIcon"></div>
</footer>
<div id="popUp" class="loader hidden">
<div class="searchContainer">
<input id="searchBox" class="controls" type="text" placeholder="Enter address or zipcode...">
<button name="find" id="find" type="button"></button>
<div id="cancel"></div>
</div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyASNI30m7yJak5ramdkTPFGiryZhx4YsjY&libraries=places"></script>
<script src="js/lib/jquery-3.1.1.min.js"></script>
<script src="js/lib/underscore-min.js"></script>
<script src="js/app.js"></script>
</body>
</html>