-
Notifications
You must be signed in to change notification settings - Fork 14
/
products.html
68 lines (52 loc) · 1.97 KB
/
products.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
<!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>
<link
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Karla:wght@200;300&family=Mulish:wght@200;400&family=PT+Sans&family=Pacifico&family=Shizuru&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link rel="stylesheet" href="./styles/header.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link rel="stylesheet" href="./styles/products.css">
</head>
<body>
<div id="navbar" ></div>
<select name="" id="sortPrice">
<option value="">FILTER & SORT</option>
<option value="low">Low To High</option>
<option value="high">High To Low</option>
<option value="less">Less than 2000</option>
<option value="greater">Greater than 500</option>
</select>
<div id="main" class="grid">
<!-- <div>
<img src="https://static.zara.net/photos///2021/I/0/2/p/3562/325/712/2/w/312/3562325712_2_1_1.jpg?ts=1629704227863" alt="">
<div class="flex">
<p>STRIPED COTTON SHIRT</p>
<div>
<p style="text-decoration:line-through">₹ 2,990.00</p>
<p>-55%₹ 1,290.00</p>
</div>
</div>
</div> -->
</div>
<div id="footer"></div>
</body>
</html>
<script type="module">
import { header } from "./components/header.js";
import { footers } from "./components/footer.js";
// navbar from the components import
document.getElementById("navbar").innerHTML = header();
// footer from the components import
document.getElementById("footer").innerHTML = footers();
</script>
<script src="./scripts/products.js"></script>