-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.77 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<title>EPIC GOOGLE MAPS PROJECT</title>
<link rel="icon" href="image/Starbucks_icon.png" type="image/png">
<script src="js/store-data.js"></script>
<script src="js/index.js"></script>
<link rel="stylesheet" href="style/style.css">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://kit.fontawesome.com/c939d0e917.js"></script>
</head>
<body>
<div class="title" id="title">Store Locator</div>
<div class="search-container">
<div class="search">
<input id="zip-code-input" type="text" placeholder="Enter zip"/>
<li class="fas fa-search" onclick="searchStores()"></li>
</div>
</div>
<div class="stores-list-container">
<div class="stores-list">
<div class="store-container">
<div class="store-info-container">
<div class="store-address">
<span>8480 Beverly Blvd</span>
<span>Los Angeles, CA 90048</span>
</div>
<div class="store-phone-number">
123-456-7890
</div>
</div>
<div class="store-number-container">
<div class="store-number">
1
</div>
</div>
</div>
</div>
</div>
<div id="map"></div>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBeptgXLXsGNXKGNiEpPXVGZgFhO_FWIeg&callback=initMap">
</script>
</body>
</html>