-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProduct2.html
44 lines (44 loc) · 1.64 KB
/
Product2.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
<!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>Men's Wear</title>
<link rel="stylesheet" href="./style/Product2.css">
<link rel="stylesheet" href="./style/navbar.css">
</head>
<body>
<nav id="navbars"></nav>
<div id="body">
<div>
<img src="https://www.jiomart.com/images/category/496/men-20200831.jpg" class="image123" alt="jiomart">
</div>
<h1 id="show">Showing 20 of 33448 items</h1>
<div id="sorting">
<p id="sor">Sort By</p>
<button onclick="bbn()" id="lth">Low To High</button>
<button onclick="ssn()" id="htl">High To Low</button>
<button onclick="Discount()" id="dis">Discount</button>
<button onclick="allP()" id="ap">All Products</button>
</div>
<div id="filter">
<h3 id="filter2">Filter by Category</h3>
<button onclick="Peach()" id="peach">T-shirts</button>
<button onclick="Plum()" id="plum">Activewear shirts</button>
<button onclick="Avocado()" id="avocado">Tank Top</button>
<h3 id="colouring">Filter by colour</h3>
<button onclick="Nectarine()" id="nec">Red</button>
<button onclick="Black()" id="black">Black</button>
<button onclick="Grey()" id="grey">Grey</button>
</div>
<div id="products"></div>
</div>
</body>
</html>
<script src="./js/Product2.js"></script>
<script type="module">
import {navbar} from "./components/navbars.js"
document.getElementById("navbars").innerHTML = navbar();
</script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>