-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkitchentools.html
59 lines (54 loc) · 1.94 KB
/
kitchentools.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kitchen Tools</title>
<script src="https://kit.fontawesome.com/2a76efaedf.js" crossorigin="anonymous"></script>
<link rel="shortcut icon" href="https://i.im.ge/2022/06/14/rvnfcm.png" type="image/x-icon">
<link rel="stylesheet" href="styles/kitchen.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/navbar.css">
</head>
<body>
<div id="navbar"></div>
<div id="product_navbar"></div>
<div id="title">
<div id="title_box">
<div>
<h1>Kitchen Tools</h1>
</div>
<div>
<p>Home > Products > Kitchen > WareKitchen > Tools</p>
</div>
</div>
</div>
<div id="main">
<div id="sorter_div">
<div id="sortby">
<label for="select">Sort By:</label>
<select id="select">
<option value="high">High To Low</option>
<option value="low">Low To High</option>
<option value="pop">Popularity</option>
<option value="dis">Discount</option>
<option value="rate">Top Rated</option>
</select>
</div>
<div id="productcat">
<h3>Product categories</h3>
<div><input type="radio" class="checkbox" name="check">
<p>Air Ticket Container</p>
</div>
<div><input type="radio" class="checkbox" name="check">
<p>Kitchen Tools</p>
</div>
</div>
</div>
<div id="append_products"></div>
</div>
<div id="footer"></div>
</body>
</html>
<script src="scripts/kitchentools.js" type="module"></script>