-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path19-filter-input.html
37 lines (33 loc) · 1.08 KB
/
19-filter-input.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Мастерская: фильтр (поиск)</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<!-- tech -->
<label>
What`re you looking for?
<input type="text" id="filter" />
</label>
<ul class="js-list"></ul>
<!-- subjects -->
<label>
What subjects are you looking for?
<input type="text" id="filter-subj" />
</label>
<ul class="js-list-subj"></ul>
<!-- students -->
<label>
What subjects are you looking for?
<input type="text" id="search-box" />
</label>
<ul class="js-list-students"></ul>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lodash.min.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/index.min.js"></script> -->
<script src="./app/19-filter-input.js" type="module"></script>
</body>
</html>