-
Notifications
You must be signed in to change notification settings - Fork 4
/
mensjewlery.html
82 lines (73 loc) · 3.15 KB
/
mensjewlery.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
72
73
74
75
76
77
78
79
80
81
82
<!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>Document</title>
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./style/products.css">
<link rel="stylesheet" href="./style/nav.css">
</head>
<body>
<header id="head">
</header>
<div id="main">
<div>
<h1>Men's Jewelry</h1>
</div>
<div>
<p>Showing 1290 results for "Men's Jewelry"</p>
<div>
<select id="sort" onchange="handleNameSort()">
<option value="">Bestselling</option>
<option value="asce">Title: A-Z</option>
<option value="dsce">Title: Z-A</option>
<option value="nto">Date: New to Old</option>
<option value="otn">Date: Old to New</option>
<option value="lth">Price: Low to High</option>
<option value="htl">Price: High to Low</option>
<option value="des">Discount: High to Low</option>
<option value="trend">Trending</option>
</select>
</div>
</div>
<div id="box">
<div id="sidebar">
<p onclick="show()"><i class="fa-solid fa-angle-down"></i> CATEGORY</p>
<div id="myDiv">
<input type="checkbox" ><label>Activewear - Coats & Jackets</label><br>
<input type="checkbox"><label>Activewear - Shirts</label><br>
<input type="checkbox"><label>Activewear - Shorts</label><br>
<input type="checkbox"><label>Blazers & Sport Coats</label><br>
</div>
<p onclick="show1()" ><i class="fa-solid fa-angle-down"></i> BRAND</p>
<div id="myDiv2">
<input type="checkbox"><label>Amiri</label><br>
<input type="checkbox"><label>Burberry</label><br>
<input type="checkbox"><label>Gucci</label><br>
<input type="checkbox"><label>Prada</label><br>
<input type="checkbox"><label>Valentino</label><br>
</div>
<p onclick="show2()"><i class="fa-solid fa-angle-down"></i> COLOR</p>
<div id="myDiv3"></div>
<p onclick="show3()"><i class="fa-solid fa-angle-down"></i> PRODUCT CONDITION</p>
<div id="myDiv4">
<input type="checkbox"><label >New</label>
</div>
<p onclick="show4()"><i class="fa-solid fa-angle-down"></i> PRICE</p>
<div id="myDiv5"></div>
</div>
<div id="container"></div>
</div>
</div>
<!-- last three -->
<div id="lasthree">
</div>
<!-- footer -->
<footer id="foot">
</footer>
</body>
</html>
<script src="./scripts/mensJewlery.js"></script>
<script src="./scripts/navbar.js" type="module"></script>