-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwomen.html
139 lines (133 loc) · 5.43 KB
/
women.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<title>Levi's® for Men - Shop Clothing, Accessories & Footwear | Levi's® India</title>
<script src="https://kit.fontawesome.com/599713bf7d.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./STYLES/header.css">
<link rel="stylesheet" href="./STYLES/menProducts.css">
<link rel="stylesheet" href="./STYLES/footermain.css">
<link rel="icon" type="image/x-icon" href="./IMAGES/logo.jpg">
</head>
<body>
<header class="complete-header"></header>
<div id="tpcc">
<div>
<h2>REFINE</h2>
</div>
<div id="pro_sort">
<div>
<h2>
Total Style : <span id="totalProductsIn"></span>
</h2>
</div>
<div id="selectCon">
<select id="sortSelect">
<option value="low">Price : low to high</option>
<option value="high">Price : High to low</option>
<option value="a">Sort : A to Z</option>
<option value="z">Sort : Z to A</option>
</select>
</div>
</div>
</div>
<div id="productPage">
<div id="leftDiv">
<hr>
<div class="">
<div class="open-close">
<span>GENDER</span>
<span class="openAndClose"><i class="fas fa-plus-circle"></i></span>
</div>
<div class="openAndCloseDiv" id="openAndCloseDiv0">
<input type="checkbox">
<label for="">Men</label> <br>
<input type="checkbox">
<label for="">Women</label>
</div>
</div>
<hr>
<div class="">
<div class="open-close">
<span>ITEM TYPE</span>
<span class="openAndClose"><i class="fas fa-plus-circle"></i></span>
</div>
<div class="openAndCloseDiv" id="openAndCloseDiv1">
<input type="checkbox">
<label for="">Cap</label> <br>
<input type="checkbox">
<label for="">Jackets</label> <br>
<input type="checkbox">
<label for="">Jeans</label> <br>
<input type="checkbox">
<label for="">Joggers</label> <br>
<input type="checkbox">
<label for="">Pants</label> <br>
<input type="checkbox">
<label for="">Shirts</label> <br>
<input type="checkbox">
<label for="">T.shirts</label>
</div>
</div>
<hr>
<div class="">
<div class="open-close">
<span>PRICE</span>
<span class="openAndClose"><i class="fas fa-plus-circle"></i></span>
</div>
<div class="openAndCloseDiv" id="openAndCloseDiv2">
<input type="radio" name="priceRadioInput" value="" class="priceRadioInputClass">
<label for="">₹0 - ₹1000</label><br>
<input type="radio" name="priceRadioInput" value="" class="priceRadioInputClass">
<label for="">₹1001 - ₹3000</label><br>
<input type="radio" name="priceRadioInput" value="" class="priceRadioInputClass">
<label for="">₹3001 - ₹5000</label><br>
<input type="radio" name="priceRadioInput" value="" class="priceRadioInputClass">
<label for="">₹5001 - ₹10000</label>
</div>
</div>
<hr>
<div class="">
<div class="open-close">
<span>SIZE</span>
<span class="openAndClose"><i class="fas fa-plus-circle"></i></span>
</div>
<div class="openAndCloseDiv" id="openAndCloseDiv3">
<input type="checkbox">
<label for="">XS</label> <br>
<input type="checkbox">
<label for="">S</label> <br>
<input type="checkbox">
<label for="">M</label> <br>
<input type="checkbox">
<label for="">L</label> <br>
<input type="checkbox">
<label for="">XL</label> <br>
<input type="checkbox">
<label for="">XXL</label>
</div>
</div>
<hr>
<div class="">
<div class="open-close">
<span>COLOUR</span>
<span class="openAndClose"><i class="fas fa-plus-circle"></i></span>
</div>
<div class="openAndCloseDiv" id="openAndCloseDiv4">
</div>
</div>
<hr>
</div>
<div id="rightDiv">
<div id="menProductDiv"></div>
</div>
</div>
<footer></footer>
</body>
</html>
<script src="./SCRIPTS/women.js"></script>
<script type="module">
import navbar from "./COMPONENTS/header.js"
import footermain from "./COMPONENTS/footermain.js"
document.getElementsByTagName("footer")[0].innerHTML=footermain()
document.getElementsByTagName('header')[0].innerHTML = navbar()
</script>