forked from deepmajoka07/-likely-cough-9107
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
315 lines (296 loc) · 13.5 KB
/
product.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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=\, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./styles/product.css">
<link rel="stylesheet"href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
</head>
<body>
<!-- navigation bar -->
<div id="head">
<div class="top">
<div class="top-left">
<i class="fa-solid fa-tag" style="font-size: 25px;"></i>
<span class="badge">4</span>
<h4> Get Free Shipping & Rewards</h4>
<i class="fa-solid fa-angle-down"></i>
</div>
<div class="top-right">
<i class="fa-solid fa-cart-shopping" onclick="cart()" style="font-size: 22px;"></i>
<i class="fa-solid fa-circle-user" onclick="signup()" style="font-size: 22px;"></i>
<i class="fa-solid fa-location-dot" style="font-size: 22px;"></i>
<i class="fa-solid fa-circle-question" style="font-size: 22px;"></i>
</div>
</div>
<!------------------------------------- navigation bar ------------------------------------------>
<div class="navbar">
<div class="logo">
<img src="./images/logo.png" alt="" onclick="home()">
</div>
<div>
<div id="menu">
<div class="menu">
<div class="menu-item">
<a href="./men.html">Men</a>
</div>
<div class="menu-item">
<a href="./women.html">Women</a>
</div>
<div class="menu-item">
<a href="./kids.html">Kids</a>
</div>
<div class="menu-item">
<a href="">Footwear</a>
</div>
<div class="menu-item">
<a href="">Activity</a>
</div>
<div class="menu-item">
<a href="">Featured</a>
</div>
<div class="menu-item">
<a href="">Winter Sale</a>
</div>
</div>
</div>
</div>
<!-- <div class="searchbar">
<div class="search-input">
<input type="text" name="" placeholder="Search">
<i class="fa-solid fa-magnifying-glass"></i>
</div>
</div> -->
</div>
</div>
<!-- All Products Container with filter functionality -->
<div class="main_container">
<div>
<div class="activty">
<a href="./index.html">Home</a>
<span class="material-symbols-outlined">chevron_right</span>
<a href="#">Activity</a>
</div>
<div class="heading">
<h1>Snow Clothes</h1>
</div>
<div class="poster">
<img src="https://columbia.scene7.com/is/image/ColumbiaSportswear2/36786_C_U_SkiSnow_CaBan-v4_XL?$aem_pjpeg$"
alt="">
</div>
</div>
<div class="Container">
<div class="filter_Container">
<div>
<div class="category_filter">
<span id="Jackets">Jackets</span>
<span id="Pants">Pants</span>
<span id="Baselayer">Baselayer</span>
<span id="Boots">Snow Boots</span>
<span id="Accessories">Accessories</span>
</div>
<hr class="line line_1">
<div class="gender_filter">
<h3>Gender</h3>
<div>
<input type="radio" class="gender" name="gender" id="men" value="Mens">
<label for="men">Men's</label>
</div>
<div>
<input type="radio" class="gender" name="gender" id="men" value="Women's">
<label for="women">Women's</label>
</div>
<div>
<input type="radio" class="gender" name="gender" id="boy" value="Boy's">
<label for="boy">Boy's</label>
</div>
<div>
<input type="radio" class="gender" name="gender" id="girl" value="Boy's">
<label for="girl">Girl's</label>
</div>
</div>
<hr class="line">
<div class="other_filters">
<div class="Static_filter">
<h3>Footwear Width</h3>
<span class="material-symbols-outlined">add</span>
</div>
<hr class="line">
<div class="Static_filter">
<h3>Size</h3>
<span class="material-symbols-outlined">add</span>
</div>
<hr class="line">
<div class="Static_filter">
<h3>Color</h3>
<span class="material-symbols-outlined">add</span>
</div>
<hr class="line">
<div class="Static_filter">
<h3>Price</h3>
<span class="material-symbols-outlined">add</span>
</div>
<hr class="line">
<div class="Static_filter">
<h3>Kids' Size</h3>
<span class="material-symbols-outlined">add</span>
</div>
<hr class="line">
<div class="Static_filter">
<h3>Snow Style</h3>
<span class="material-symbols-outlined">add</span>
</div>
<hr class="line">
<div class="Static_filter">
<h3>Product Type</h3>
<span class="material-symbols-outlined">add</span>
</div>
<hr class="line">
<div class="Static_filter">
<h3>Benefit</h3>
<span class="material-symbols-outlined">add</span>
</div>
<hr class="line">
<div class="Static_filter">
<h3>Size Range</h3>
<span class="material-symbols-outlined">add</span>
</div>
</div>
</div>
</div>
<div class="container_2">
<div class="sort">
<select id="Other_Filter">
<option value="Default">Sort By: Choise</option>
<option value="Newest">Sort By: Newest</option>
<option value="Rate">Sort By: Top Rated</option>
<option value="L2H">Price : Low to High</option>
<option value="H2L">Price : High to Low</option>
</select>
</div>
<div id="Product_Container">
</div>
<div class="skiCloth">
<hr class="lastLine">
<h4>Ski Cloths</h4>
<p>
When the hills are coated in a sparkling layer of fresh powder, heading out for a day of fun in
the snow is almost impossible to resist. Columbia is home to an extensive selection of ski
clothes that will keep you warm in the frosty outdoors. Our selection of high quality outerwear
is engineered to retain body heat, featuring high quality insulation and breathable waterproof
designs that help keep you dry inside and out. We feature insulated jackets for men, women, and
children designed to deliver all-day comfort and the range of motion you need to stay active. We
also carry a selection of premium snowboard apparel crafted to help you get the most out of your
day on the slopes. Get geared up for your snowy season with our newest collection of ski
clothes.
</p>
</div>
</div>
</div>
<div class="container_3">
<div>
<i class="fa-solid fa-phone"></i>
<p>(800) 622-6953</p>
<h4>Phone: 4am-9pm PT M-F, 5am-8pm Sat/Sun
Chat: 4am-9pm PT M-F, 5am-8pm Sat/Sun
Phones closed 1/16 and 2/20</h4>
</div>
<div>
<i class="fa-regular fa-circle-question"></i>
<p>Customer Care</p>
</div>
<div>
<i class="fa-solid fa-gift"></i>
<p>Gift Card</p>
</div>
<div>
<i class="fa-solid fa-location-dot"></i>
<p>Find a Store</p>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="footer-top">
<img src="./images/greatReward.png" alt=""><br>
<p class="join">Join the adventure</p>
<p>Get free ground shipping and rewards on every Purchase plus other exclusive benefits<i
class="fa-solid fa-angle-right"></i></p>
</div>
<div class="grid-footer">
<div class="aboutus">
<ul>
<li class="join">About Us</li>
<li>Tough Mother Outdoor Guide</li>
<li>History</li>
<li>Columbia Greater Rewards Program</li>
<li>Corporate Responsibility</li>
<li>Investor Relations</li>
<li>Press Center</li>
<li>Careers</li>
<li>Affiliate Program</li>
<li>Product Testing</li>
<li>Become a Business Partner</li>
<li>Digital Media Resources</li>
</ul>
</div>
<div class="shop">
<ul>
<li class="join">Shop</li>
<li>Shop By Activity</li>
<li>Shop By Technology</li>
<li>Returns</li>
<li>Warranty</li>
<li>Product Care</li>
<li>Accessibility</li>
<li>Special Deals</li>
<li>Professional Purchase</li>
<li>Size Guides</li>
</ul>
</div>
<div class="connectus">
<p class="join">CONNECT WITH US</p>
<p>Subscribe and be the first to hear about new products, sales, and more.</p>
<div class="email-container">
<div class="email-input">
<i class="fa-sharp fa-solid fa-envelope" style="font-size: 30px;"></i>
<input type="text" name="" placeholder="Enter your email address">
<a href="" id="black"><i class="fa-solid fa-angle-right" style="font-size: 25px;"></i></a>
</div>
</div>
<p>By signing up, you agree to our Terms of Use and Privacy Policy.</p>
<div class="social-media-icon">
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-youtube"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-linkedin-in"></i>
<i class="fa-brands fa-tiktok"></i>
</div>
<p class="join"> CUSTOMER CARE</p>
<p>
Phone: 4am-9pm PT M-F, 5am-8pm Sat/Sun <br> <br>
Chat: 4am-9pm PT M-F, 5am-8pm Sat/Sun <br><br>
Phones closed 1/16 and 2/20 <br><br><br>
<a href="">Give us Feedback</a>
</p>
</div>
</div>
</footer>
</body>
<script src="./scripts/product.js"></script>
</html>
<script>
function home(){
window.location.href="./index.html"
}
function cart(){
window.location.href = "./cart.html"
}
function signup(){
window.location.href = "./Signup.html"
}
</script>