-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (27 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>Venues Search</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="src/css/bootstrap.min.css">
<link rel="stylesheet" href="src/css/style.css">
</head>
<body>
<div id="map"></div>
<form class='text-center'>
<h1>Venues Search</h1>
<input type="text" id='query' placeholder="Search for..."><br>
<input type="text" id='radius' placeholder="Distance(km)"><br>
<p id='errorMsg'></p>
<button type='button' class="btn btn-primary mx-auto" id='searchBtn'>Search</button>
</form>
<script type="text/javascript" src='src/js/jquery.min.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script type="text/javascript" src='src/js/bootstrap.min.js'></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDv05RyXfj6uwc9LLynMcHNTBEkH8PQzH4"
async defer></script>
<script src="src/js/script.js"></script>
</body>
</html>