-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (30 loc) · 984 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script type="text/javascript" src="./lib/bundle.js"></script>
<link rel="stylesheet" href="./assets/styles.css">
</head>
<body>
<div class="jumbotron">
<h3 id="header">Search flights and find their distances</h3>
<form>
<datalist id="airports"></datalist>
<div class="input-container">
<label for="input1">From:</label>
<input type="text" list="airports" id="input1">
</div>
<div class="input-container">
<label for="input2">To:</label>
<input type="text" list="airports" id="input2">
</div>
<button type="button" id="submit">Search</button>
</form>
</div>
<div id="map"></div>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBj2czDtrlCW9CGb_JucuQqabbRRVWCjKE&callback=initMap&libraries=geometry">
</script>
</body>
</html>