-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (39 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html >
<html>
<head>
<title>EPIC 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 type="text" placeholder="Enter zip" id="zipcode">
<i class="fas fa-search" onclick = "searchStores(stores)"></i>
</div>
</div>
<div class = "stores-list-container">
<div class="stores-list">
<div class="store-container">
<div class= "store-info-container" >
<div class="store-adress">
<span>9852 beverly Blvd</span>
<span>Los Angeles, CA 90048</span></div>
<div class="store-phone-number"> 365-422-5511</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=AIzaSyBh15L6ZQVrZVsMjwAhb_3-X6bbgpSGtQk
&callback=initMap"
async defer></script>
</body>
</html>
</script>