-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask2.html
35 lines (29 loc) · 862 Bytes
/
task2.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
<!DOCTYPE html>
<html>
<head>
<title>TASK2 - Inventory Management</title>
</head>
<body>
<h1>Inventory Management</h1>
<label for="productList">Product List (JSON format):</label>
<textarea id="productList" rows="5" cols="50"></textarea>
<br>
<label for="sortKey">Sort Key:</label>
<select id="sortKey">
<option value="name">Name</option>
<option value="price">Price</option>
<option value="stock">Stock</option>
</select>
<br>
<label for="sortOrder">Sort Order:</label>
<select id="sortOrder">
<option value="ascending">Ascending</option>
<option value="descending">Descending</option>
</select>
<br>
<button id="sortButton">Sort</button>
<h2>Sorted Product List:</h2>
<div id="sortedList"></div>
<script src="sorter.js"></script>
</body>
</html>