forked from front-camp-2018/tags-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1017 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tags Input</title>
<link rel="stylesheet" href="./src/index.css">
</head>
<body>
<main class="app">
<h1 class="title-level-1">Tags Input App</h1>
<div class="list">
<h2 class="title-level-2">Simple Input</h2>
<input id="tags-input"
class="tags-input"
type="text"
placeholder="type your tags..." />
<ul class="tags-list"></ul>
</div>
<div class="list">
<h2 class="title-level-2">Default Input</h2>
<input id="default-tags-input"
class="tags-input"
type="text"
placeholder="type your tags..." />
<ul class="tags-list default-tags-list"></ul>
</div>
</main>
<script src="src/index.js"></script>
</body>
</html>