-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearrings.html
263 lines (253 loc) · 8.16 KB
/
earrings.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crystaline | Earrings</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v6.2.1/css/all.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
/>
<link rel="stylesheet" href="./style/navbar.css" />
<link rel="stylesheet" href="./style/earrings.css" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@700"
rel="stylesheet"
/>
</head>
<body>
<header>
<section class="header">
<div class="headerLeft">
<div class="logoContainer">
<a href="index.html"
><img id="logo" src="./images/WhatsApp Image 2023-01-17 at 9.29.36 PM.jpeg"
/></a>
</div>
<!--Search Box-->
<div class="searchInputContainer">
<div class="searchIcon">
<img src="./images/search.png" />
</div>
<form action="" id="inputForm">
<input
type="text"
placeholder="Search by Product Code"
class="inputSearch"
oninput="search()"
/>
</form>
<div class="inputCloseSearch">
<i class="fa-solid fa-xmark" id="closeSearch"></i>
</div>
<div class="searchRecentProduct">
<h3>Recent Searches</h3>
<div class="listofRecent"></div>
</div>
</div>
</div>
<div class="headerRight">
<div class="downloadContainer">
<div class="mobileIcon">
<img src="./images/mobile.png" />
</div>
<p>Download App</p>
<div class="downloadHoverBtnContainer">
<h3>Download From</h3>
<a href="" class="downloadBtn">
<img
src="https://images.meesho.com/images/pow/playstore-icon-big.webp"
/>
</a>
<a href="" class="downloadBtn">
<img
src="https://images.meesho.com/images/pow/appstore-icon-big.webp"
/>
</a>
</div>
</div>
<!-- <div class="becomeSupplierContainer">
<p>Become a Supplier</p>
</div> -->
<div class="profileAndCart">
<div class="profileContainer">
<div class="profileIcon">
<img src="./images/profile.png" />
</div>
<!-- Drop Down Sigin/SignUp -->
<div class="dropdown">
<p id="icon-style">Profile</p>
<div class="dropdown-options">
<h4>Hello User</h4>
<p>To access your Crystaline account</p>
<button class="sign-up" id="sign_up">Sign Up</button>
<button class="sign-up" id="admin">Admin</button>
<hr />
<div class="orderIcon">
<img src="./images/orders.png" />
<a href="#">My Orders</a>
</div>
</div>
</div>
</div>
<div class="CartContainer" id="cartIcon">
<div class="CartIcon">
<img src="./images/cart.png" />
</div>
<p id="icon-style">Cart</p>
</div>
</div>
</div>
</section>
<!--Drop-Down Menu-->
<nav>
<ul>
<li>
NEW ARRIVALS
<div class="subMenu">
<div id="womenEthic" class="submenuList"></div>
</div>
</li>
<li id="rings">
RINGS
<div class="subMenu">
<div id="womenWestern" class="submenuList"></div>
</div>
</li>
<li id="earrings">
EARRINGS
<div class="subMenu">
<div id="men" class="submenuList"></div>
</div>
</li>
<li>
BRACELETES & BANGLES
<div class="subMenu">
<div id="kids" class="submenuList"></div>
</div>
</li>
<li>
SOLITAIRES
<div class="subMenu">
<div id="HomeAndKitchen" class="submenuList"></div>
</div>
</li>
<li>
MANGALSUTRA
<div class="subMenu">
<div id="beautyAndHealth" class="submenuList"></div>
</div>
</li>
<li>
READY TO SHIP
<div class="subMenu">
<div id="JewelleryAndAccessories" class="submenuList"></div>
</div>
</li>
<li>
KIDS
<div class="subMenu">
<div id="BagsFootWarId" class="submenuList"></div>
</div>
</li>
<li>
OTHER JEWELLERY
<div class="subMenu">
<div id="ElectronicsId" class="submenuList"></div>
</div>
</li>
</ul>
</nav>
</header>
<img id="banner" src="/images/Earrings-main.avif" alt="#" />
<div id="current-page">
<a href="index.html">Home / </a><a href="earrings.html">EarRings</a>
</div>
<div id="main">
<div id="main-container">
<div id="filter-section">
<div class="by-price">
<h1>Price</h1>
<p>
<input
type="checkbox"
id="price5k"
onchange="b5k()"
value="by-price"
/>Below ₹5000
</p>
<p>
<input
type="checkbox"
id="price5-10"
onchange="b5_10()"
value="by-price"
/>₹5000-₹10000
</p>
<p>
<input
type="checkbox"
id="price10-15"
onchange="b10_15()"
value="by-price"
/>₹10000-₹15000
</p>
<p>
<input
type="checkbox"
id="price15-25"
onchange="b15_25()"
value="by-price"
/>₹15000-₹25000
</p>
</div>
<div class="by-brand">
<h1>Brand</h1>
<p><input type="checkbox" name="by-brand" />James Allen</p>
<p><input type="checkbox" name="by-brand" />Pandora</p>
<p><input type="checkbox" name="by-brand" />Mamiya</p>
<p><input type="checkbox" name="by-brand" />Giva</p>
</div>
</div>
<div id="products-section">
<div id="type&info">
<h1>EarRings</h1>
<p>
From dainty studs to statement hoops, our collection of earrings
offers something for every fashion lover. Add a touch of elegance
and sophistication to any look with our unique designs and
high-quality materials. Crystaline diamonds has made thousands of
beautiful jewelry pieces for visitors. We offer quality
fashionable designs and delightful diamond earrings at competitive
price.
</p>
</div>
<hr />
<div id="sort">
Sort By
<select name="sort" class="sort">
<option value="default">Default</option>
<option value="LTH">Low To High</option>
<option value="HTL">High To Low</option>
<option value="asec">A-Z</option>
<option value="desc">Z-A</option>
</select>
</div>
<div id="products-container"></div>
</div>
</div>
</div>
</body>
<script src="./scripts/nav.js" type="module"></script>
<script src="./script/earrings.js"></script>
</html>