-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
50 lines (40 loc) · 2.35 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Textarea autocomplete with Algolia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.5.5/tachyons.min.css"/>
<link rel="shortcut icon" href="./favicon.ico">
</head>
<body class="bg-washed-blue pa2">
<a class="f3 link black hover-blue" href="https://github.com/algolia/demo-textarea-autocomplete">< Back to the GitHub repository</a>
<div class="flex flex-row flex-wrap ma2">
<div class="flex-none w-50 pa2 flex">
<a href="./basic-autocomplete.html" class="flex-auto link black-70 f3 flex flex-column flex-nowrap db ba bw1 b--light-silver br2 pa2 hover-bg-blue hover-white">
<h3 class="flex-none tc ma0">Basic autocomplete</h3>
<img class="flex-none w6 center mt3 br2 shadow-3" src="./previews/basic-autocomplete.gif" alt="Basic autocomplete" />
</a>
</div>
<div class="flex-none w-50 pa2 flex">
<a href="./autocomplete-with-pictures.html" class="flex-auto link black-70 f3 flex flex-column flex-nowrap db ba bw1 b--light-silver br2 pa2 hover-bg-blue hover-white">
<h3 class="flex-none tc ma0">Autocomplete with pictures</h3>
<img class="flex-none w6 center mt3 br2 shadow-3" src="./previews/autocomplete-with-pictures.gif" alt="Basic autocomplete" />
</a>
</div>
<div class="flex-none w-50 pa2 flex">
<a href="./rich-html-textarea.html" class="flex-auto link black-70 f3 flex flex-column flex-nowrap db ba bw1 b--light-silver br2 pa2 hover-bg-blue hover-white">
<h3 class="flex-none tc ma0">Rich HTML textarea</h3>
<img class="flex-none w6 center mt3 br2 shadow-3" src="./previews/rich-html-textarea.gif" alt="Basic autocomplete" />
</a>
</div>
<div class="flex-none w-50 pa2 flex">
<a href="./full-html-textarea-autocomplete.html" class="flex-auto link black-70 f3 flex flex-column flex-nowrap db ba bw1 b--light-silver br2 pa2 hover-bg-blue hover-white">
<h3 class="flex-none tc ma0">Full HTML Textarea autocomplete</h3>
<img class="flex-none w6 center mt3 br2 shadow-3" src="./previews/full-html-textarea-autocomplete.gif" alt="Basic autocomplete" />
</a>
</div>
</div>
</body>
</html>