-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.15 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WMS</title>
<script src="vendor/jquery-2.2.0.min.js"></script>
<script src="script/common.js"></script>
<link rel="stylesheet" href="styles/Stylesheet.css">
<body>
<header>
<h1>Тестовое задание</h1>
</header>
<h3>
Выбор параметров коробки
</h3>
<form id="myform">
<label for="width">Введите сторону</label><input type="number" name="width" id="width" value="200">
<label for="rows">Количество рядов</label><input type="number" name="rows" id="rows" value="20">
<label for="cols">Количество столбцов</label><input type="number" name="cols" id="cols" value="20">
<label for="speed">Скорость</label><input type="number" name="speed" id="speed" value="20">
<input type="submit" name="submit" value="Применить">
</form>
<h2>
Кликните по коробке
</h2>
<div id="myActionBox">
</div>
</body>
</html>