-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsale.html
42 lines (38 loc) · 1.26 KB
/
sale.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
<!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>Sale</title>
<link rel="stylesheet" href="./css/sale.css">
</head>
<body>
<div id="apeksha_amnavbar" include-html="./navbar.html">
<!-- navbar.html -->
</div>
<div id="prsPratik">
<div id="prsFilter">
<select name="" id="prsSortPrice">
<option value="">Sort by Price</option>
<option value="LowHigh">Low to High</option>
<option value="HighLow ">High to Low</option>
</select>
<select name="" id="prsSortName">
<option value="">Sort by Name</option>
<option value="AtoZ">A to Z</option>
<option value="ZtoA ">Z to A</option>
</select>
</div>
<div id="prsProduct">
<h1></h1>
</div>
</div>
<div id="NASbottomNavbar" include-html="./footer.html">
<!-- footer -->
</div>
</body>
</html>
<script type="module" src="./js/sale.js"></script>
<script src="./js/sub_js/jquery-3.6.0.min.js"></script>
<script src="./js/sub_js/include-html.min.js"></script>