forked from devbab/here-autocomplete-jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (17 loc) · 730 Bytes
/
index.html
File metadata and controls
22 lines (17 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<title>HERE Auto-complete</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
</head>
<body>
<div>
<p id="coords">Location: searching....</p>
<input size="40" id="place" type="text" placeholder="Search a Place...">
<input size="40" id="address" type="text" placeholder="Search an Address...">
<input size="40" id="full" type="text" placeholder="Search Something...">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="index.js"></script>
</body>
</html>