-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (32 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>
Nearby-Hospital-Tracker
</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/c939d0e917.js"></script>
<script src="data.js"></script>
<script src="magic.js"></script>
<link rel = "icon" href = "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTYnCRPwjaQJOkQeq1Xe02iaI4e-pW7w99GKkCqrjpezps-aHkz&usqp=CAU"
type = "image/x-icon">
</head>
<body>
<div class="title">
NEARBY HOSPITALS
</div>
<div class="search-container" >
<div class="search">
<input id="zip-code-input" type="text" placeholder="enter picode e.g. 110062 or 110050"></input>
<i class="fas fa-search" onclick="searchHospitals()"></i>
</div>
</div>
<div class="hospitals-list-container">
<div class="hospitals-list">
</div>
</div>
<div id="map"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDCzPMaJss7fAe0C-weO3Q1lzGZ2B3zy4A&callback=initMap"
async defer></script>
</body>
</html>