moving all labs to old dir
This commit is contained in:
54
labs/lab1/index.html
Normal file
54
labs/lab1/index.html
Normal file
@@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Фильтры и сортировка</title>
|
||||
<link rel="stylesheet" href="CSS/style.css">
|
||||
<script src="JavaScript/data.js"></script>
|
||||
<script src="JavaScript/main.js"></script>
|
||||
<script src="JavaScript/table.js"></script>
|
||||
<script src="JavaScript/filter.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<form id="filter">
|
||||
<p>
|
||||
<label for="structure">Название:</label>
|
||||
<input type="text" id="structure">
|
||||
</p>
|
||||
<p>
|
||||
<label for="category">Тип:</label>
|
||||
<input type="text" id="category">
|
||||
</p>
|
||||
<p>
|
||||
<label for="country">Страна:</label>
|
||||
<input type="text" id="country">
|
||||
</p>
|
||||
<p>
|
||||
<label for="city">Город:</label>
|
||||
<input type="text" id="city">
|
||||
</p>
|
||||
<p>
|
||||
<label for="yearFrom">Год: </label>
|
||||
от <input type="number" id="yearFrom">
|
||||
до <input type="number" id="yearTo">
|
||||
</p>
|
||||
<p>
|
||||
<label for="heightFrom">Высота:</label>
|
||||
от <input type="number" id="heightFrom">
|
||||
до <input type="number" id="heightTo">
|
||||
</p>
|
||||
<input id="applyFiltersButton" type="button" value="Найти">
|
||||
<input id="clearFiltersButton" type="button" value="Очистить фильтры">
|
||||
</form>
|
||||
|
||||
<br>
|
||||
|
||||
<table id="list">
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user