-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<title>Google Places API</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<link rel="prefetch" href="https://fonts.googleapis.com/css?family=Dosis" as="font">
<link rel="stylesheet" href="src/stylesheet.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.5.0/velocity.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.5.0/velocity.ui.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAytr024G7F4gULgAW1eMTtExZjaFwJuzE&libraries=places" async></script>
<script type="text/javascript" src="src/app.js" async></script>
</head>
<body>
<div class="search-container">
<header>
<h1>Hey there! <br> What would you like to search for today?</h1>
</header>
<input id="search-query" type="text" name="search-query" placeholder="restaurants, pizza, McDonald's..." autofocus><br>
<input class="search-button main-button" type="submit" value="Search">
</div>
<aside class="sidenav">
<a href="javascript:void(0)" id="close-nav">×</a>
<div class="sidenav-container">
<input id="sidenav-query" type="text" placeholder=""><br>
<input class="search-button sidenav-button" type="submit" value="Search">
</div>
<ul class="results-list"></ul>
</aside>
<main id="map"></main>
</body>
</html>