-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (29 loc) · 1004 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./index.css" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Autocomplete Application</title>
</head>
<body>
<header>
<div class="container">
<h1 class="top">Autocomplete Application</h1>
</div>
</header>
<main>
<div class="container top">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Type your fruit" id="text-box">
</div>
<ul id="list" class="list-group">
</ul>
</div>
</main>
<script src="./trie.js"></script>
<script src="./index.js"></script>
</body>
</html>