-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindex.html
33 lines (30 loc) · 866 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Autocomplete</title>
</head>
<body>
<!-- Using an array object -->
<div class="state-group form-group">
<label>State:</label>
<div id="state"></div>
</div>
<!-- Using a HTTP endpoint -->
<div class="gh-users-group form-group">
<label>Github User:</label>
<div id="gh-user"></div>
</div>
<!-- Using a HTTP endpoint -->
<!-- <div class="omdb-titles-group form-group">
<label>OMDB Titles:</label>
<div id="omdb-title"></div>
</div> -->
<!-- JQuery CDN -->
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="/dist/bundle.js"></script>
</body>
</html>