-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (66 loc) · 3.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge" >
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<!-- Primary Meta Tags -->
<title>Autocomplete and Suggestion Feature - Subasri</title>
<link rel="shortcut icon" href="img/favicon.ico">
<meta name="title" content="Autocomplete and Suggestion Feature - Subasri">
<meta name="description" content="Auto Complete and Suggestion feature using Trie data structure">
<meta name="keywords" content="Autocomplete, Suggestion feature, Trie, Trie data structure, Trie Autocomplete">
<meta name="robots" content="index, follow">
<meta name="p:domain_verify" content="24bac6e1fbf1750de40d59bb788d9dd9"/>
<meta name="p:domain_verify" content="24bac6e1fbf1750de40d59bb788d9dd9"/>
<meta name="msvalidate.01" content="1A92FC2EC113F8616A21D76DA684A133" />
<meta name="yandex-verification" content="fe6a06c57be84984" />
<meta name="yandex-verification" content="39e29790ebc96010" />
<meta name="facebook-domain-verification" content="3pkgruuk3kzlsn3jdfehgbd4sem1qb" />
<meta name="google-site-verification" content="tTMVzrqoAcZ0jIPOokXcTMAEaj5XHbk2aQcAFyjAtf0" />
<meta name="google-site-verification" content="uziThFIJ1huzKLCKv-DChPbWZTRRFqmmdA6pcA-dqzs" />
<meta name="google-site-verification" content="fVqw6aziPBBMvC50fkQ3A6y38AhIfhUhfDyIzqqdGTs" />
<meta name="google-site-verification" content="0xx-nlxp3UCpu_YITeTuMA4ld0Jup5hg69j-QNot0aU" />
<meta name="google-site-verification" content="YZkjOzwrUSuP4dJNNznzDnp1oGqYsVN9KuQPaZ9Q61o" />
<meta name="norton-safeweb-site-verification" content="2xno70lnqo1ajcykeat10qud6lat0xlkc2bskxz0k9ma74g0bn-kprra5ev6bwui2s6-2394l0ryopjet7yt3hs8tokilug2cfhocw3r0nlj2t1xx690tgu82t59wtwi" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="Subasri">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://subasrisk.github.io/Auto-Complete_Feature/">
<meta property="og:title" content="Autocomplete and Suggestion Feature - Subasri">
<meta property="og:description" content="Auto Complete and Suggestion feature using Trie data structure">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://subasrisk.github.io/Auto-Complete_Feature/">
<meta property="twitter:title" content="Autocomplete and Suggestion Feature - Subasri">
<meta property="twitter:description" content="Autocomplete and Suggestion feature using Trie data structure.">
<link rel="canonical" href="https://subasrisk.github.io/Auto-Complete_Feature/">
<link rel="stylesheet" type="text/css" href="src/style.css">
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
</head>
<body>
<header class="header-fixed">
<div class="header-limiter">
<h1><a href="index.html">Autocomplete / Suggestion feature using Trie data structure<span></span></a></h1>
<nav>
<a href="https://github.com/SubasriSK/Auto-Complete_Feature" target="_blank">About Trie Autocomplete</a>
</nav>
</div>
</header>
<!-- You need this element to prevent the content of the page from jumping up -->
<div class="header-fixed-placeholder"></div>
<div class="container">
<div class="body">
<div class="input-form">
<input type="text" name="input" class="input" placeholder="🔍Search for a WORD .. " >
</div>
<div class="display-result">
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" src="src/search.js"></script>
</body>
</html>