-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (63 loc) · 2.27 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
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>DNS</title>
</head>
<body>
<!-- Форма фильтрации -->
<form name="form_filter" class="form_filter">
<div class="filters_content">
<div class="filters_card">
<div class="filters_head">Периферия</div>
<label>
<input type="radio" name="filter_type" value="mouse">Мышь
</label>
<label>
<input type="radio" name="filter_type" value="keyboard">Клавиатура
</label>
</div>
<div class="filters_card">
<div class="filters_head">Подсветка</div>
<label>
<input type="checkbox" name="filter_lighting" value="RGB">RGB
</label>
<label>
<input type="checkbox" name="filter_lighting" value="White">White
</label>
</div>
<div class="filters_card">
<div class="filters_head">Производитель</div>
<label>
<input type="checkbox" name="filter_manufacturer" value="A4Tech">A4Tech
</label>
<label>
<input type="checkbox" name="filter_manufacturer" value="Aceline">Aceline
</label>
<label>
<input type="checkbox" name="filter_manufacturer" value="Apple">Apple
</label>
<label>
<input type="checkbox" name="filter_manufacturer" value="Logitech">Logitech
</label>
<label>
<input type="checkbox" name="filter_manufacturer" value="Razer">Razer
</label>
<label>
<input type="checkbox" name="filter_manufacturer" value="Xiaomi">Xiaomi
</label>
</div>
</div>
<div class="filters_buttons">
<input type="button" name="bApply" value="Показать" id="bfil">
<input type="reset" name="bReset" value="Сброс">
</div>
</form>
<!-- <input type="button" name="bSort" value="Sort"> -->
<!-- Контент -->
<div class="content"></div>
<script src="script.js?v=1"></script>
</body>
</html>