-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzip-code-location.html
45 lines (44 loc) · 1.59 KB
/
zip-code-location.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zip Code Location on Map</title>
<link rel="stylesheet" href="styles/zip-code-location.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBt392AXQ9i852y2PGnJQXY5AGplsT-owU"></script>
</head>
<body>
<div class="container">
<section class="top">
<div class="left-panel">
<div id="country-container">
<span id="country-label">Select your country</span>
<select name="country" id="country-select">
</select>
</div>
<div id="zip-container">
<span id="zip-label">ZIP code</span>
<input type="text" id="zip-input">
</div>
<div id="search-btn-container">
<button id="search">Search</button>
</div>
</div>
<div class="right-panel">
<table id="history-table">
<thead>
<tr><th>History of the last 10 searches</th></tr>
</thead>
</table>
</div>
</section>
<section class="middle">
<div id="places"></div>
</section>
<section class="bottom" id="map">
</section>
</div>
<script src="scripts/zip-code-location.js"></script>
</body>
</html>