-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaps.html
More file actions
73 lines (55 loc) · 1.81 KB
/
caps.html
File metadata and controls
73 lines (55 loc) · 1.81 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
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
<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>Mens Product</title>
<link rel="stylesheet" href="./styles/products.css" />
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/navbar.css">
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div id="loader"> <img src="./images/loading.gif" alt=""></div>
<div id="navbar">
</div>
<div id="displayData"></div>
<div id="home_bar">
<a href="../index.html" id="homebar_2"><div>Home</div></a>
<div id="slash"> / </div>
<div> Men Clothing</div>
</div>
<!-- for sort -->
<div id="category_name">
<h1>Men Clothing (20)</h1>
</div>
<div id="ra-one">
</div>
<div id="bag">
<div id = "ra">
<select id="sortPrice">
<option>Sort by Price</option>
<option value="desc">Price: High To Low</option>
<option value="asc">Price: Low To High</option>
</select>
<select id="filter_Prod">
<option value="">Filter By</option>
<option value="999">Less Than 999</option>
<option value="1499">Less Than 1499</option>
<option value="1999">More Than 1999</option>
</select>
<select id="Vh" >
<option value="none">Ratings</option>
<option value="4">4 and above</option>
<option value="3">3 and above</option>
<option value="2">2 and above</option>
</select>
</div>
<div id="container"></div>
</div>
<div id="footer">
</div>
</body>
</html>
<script src="scripts/caps.js" type=module></script>