-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.32 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.32 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
<!DOCTYPE html>
<head>
<title>Store Locator</title>
<link rel="stylesheet" href="style/style.css">
<script src="https://kit.fontawesome.com/c939d0e917.js"></script>
<script src="js/store-data.js"></script>
</head>
<body>
<div class="title">Store Locator</div>
<div class="search-container">
<div class="search">
<input id="zip-code-input" type="text" placeholder="Enter Zip">
<i class="fas fa-search" onclick="searchStores()"></i>
</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 Angles, CA 90048</span>
</div>
<div class="store-phone-number">356-345-4654</div>
</div>
<div class="store-number-container">
<div class="store-number">1</div>
</div>
</div>
</div>
</div>
<div id="map"></div>
<script src="js/index.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAEpVgL31FCx0P862mj0GopqO97J_gMSVc&callback=initMap"
async defer></script>
</body>
</html>