-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
598 lines (568 loc) · 29.8 KB
/
index.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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Handii Ecommerce Responsive Website | Home </title>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<meta name="keywords" content="Handii Responsive website, a fashion store that assists customers in locating low-cost, high-quality handbags to meet their specific demands." />
<script>
addEventListener("load", function() {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- //Meta tag Keywords -->
<!-- Custom-Files -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Bootstrap-Core-CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<!-- Style-CSS -->
<!-- font-awesome-icons -->
<link href="css/font-awesome.css" rel="stylesheet">
<!-- //font-awesome-icons -->
<!-- /Fonts -->
<link href="//fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900" rel="stylesheet">
<!-- //Fonts -->
</head>
<body>
<!-- mian-content -->
<div class="main-banner" id="home">
<!-- header -->
<header class="header">
<div class="container-fluid px-lg-5">
<!-- nav -->
<nav class="py-4">
<div id="logo">
<h1> <a href="index.html"><span class="fa fa-bol" aria-hidden="true"></span>Handii</a></h1>
</div>
<label for="drop" class="toggle">Menu</label>
<input type="checkbox" id="drop" />
<ul class="menu mt-2">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li>
<!-- First Tier Drop Down -->
<label for="drop-2" class="toggle">Drop Down <span class="fa fa-angle-down" aria-hidden="true"></span> </label>
<a href="#">Drop Down <span class="fa fa-angle-down" aria-hidden="true"></span></a>
<input type="checkbox" id="drop-2" />
<ul>
<li><a href="blog.html">Blog</a></li>
<li><a href="shop.html">Shop Now</a></li>
<li><a href="shop-single.html">Single Page</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- //nav -->
</div>
</header>
<!-- //header -->
<!--/banner-->
<div class="banner-info">
<p style="color: #000;">Trending of the week</p>
<h3 class="mb-4">Hand Bags for Women</h3>
<div class="ban-buttons">
<a href="shop-single.html" class="btn">Shop Now</a>
<a href="single.html" class="btn active">Read More</a>
</div>
</div>
<!--// banner-inner -->
</div>
<!--//main-content-->
<!--/ab -->
<section class="about py-md-5 py-5">
<div class="container-fluid">
<div class="feature-grids row px-3">
<div class="col-lg-3 gd-bottom">
<div class="bottom-gd row">
<div class="icon-gd col-md-3 text-center"><span class="fa fa-truck" aria-hidden="true"></span></div>
<div class="icon-gd-info col-md-9">
<h3 class="mb-2">FREE SHIPPING</h3>
<p>On all order over $2000</p>
</div>
</div>
</div>
<div class="col-lg-3 gd-bottom">
<div class="bottom-gd row bottom-gd2-active">
<div class="icon-gd col-md-3 text-center"><span class="fa fa-bullhorn" aria-hidden="true"></span></div>
<div class="icon-gd-info col-md-9">
<h3 class="mb-2">FREE RETURN</h3>
<p>On 1st exchange in 30 days</p>
</div>
</div>
</div>
<div class="col-lg-3 gd-bottom">
<div class="bottom-gd row">
<div class="icon-gd col-md-3 text-center"> <span class="fa fa-gift" aria-hidden="true"></span></div>
<div class="icon-gd-info col-md-9">
<h3 class="mb-2">MEMBER DISCOUNT</h3>
<p>Register & save up to $29%</p>
</div>
</div>
</div>
<div class="col-lg-3 gd-bottom">
<div class="bottom-gd row">
<div class="icon-gd col-md-3 text-center"> <span class="fa fa-usd" aria-hidden="true"></span></div>
<div class="icon-gd-info col-md-9">
<h3 class="mb-2">PREMIUM SUPPORT</h3>
<p>Support 24 hours per day</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //ab -->
<!--/ab -->
<section class="about py-5">
<div class="container pb-lg-3">
<h3 class="tittle text-center">New Arrivals</h3>
<div class="row">
<div class="col-md-4 product-men">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s1.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">Bella Toes </a>
</h4>
<div class="product_price">
<div class="grid-price">
<span class="money">$67.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 product-men">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s2.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">Chikku Loaf </a>
</h4>
<div class="product_price">
<div class="grid-price">
<span class="money">$47.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 product-men">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s3.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">(RLV) </a>
</h4>
<div class="product_price">
<div class="grid-price">
<span class="money">$57.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 product-men my-lg-4">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s4.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">Shuberry</a>
</h4>
<div class="product_price">
<div class="grid-price">
<span class="money">$57.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 product-men my-lg-4">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s5.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">Red Bellies </a>
</h4>
<div class="product_price">
<div class="grid-price">
<span class="money">$45.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 product-men my-lg-4">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s6.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">Catwalk Flats </a>
</h4>
<div class="product_price">
<div class="grid-price">
<span class="money">$75.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 product-men">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s7.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">Runsoe </a>
</h4>
<div class="product_price">
<div class="grid-price">
<span class="money">$675.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 product-men">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s8.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">Sukun </a>
</h4>
<div class="product_price">
<div class="grid-price ">
<span class="money ">$75.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 product-men">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/s9.jpg" class="img-fluid" alt="">
<span class="product-new-top">New</span>
</div>
<div class="item-info-product">
<h4>
<a href="shop-single.html">Bank Sneak</a>
</h4>
<div class="product_price">
<div class="grid-price">
<span class="money">$85.00</span>
</div>
</div>
<ul class="stars">
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-half-o" aria-hidden="true"></span></a></li>
<li><a href="#"><span class="fa fa-star-o" aria-hidden="true"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //ab -->
<!--/testimonials-->
<section class="testimonials py-5">
<div class="container">
<div class="test-info text-center">
<h3 class="my-md-2 my-3">Rahul Kumar</h3>
<ul class="list-unstyled w3layouts-icons clients">
<li>
<a href="#">
<span class="fa fa-star"></span>
</a>
</li>
<li>
<a href="#">
<span class="fa fa-star"></span>
</a>
</li>
<li>
<a href="#">
<span class="fa fa-star"></span>
</a>
</li>
<li>
<a href="#">
<span class="fa fa-star-half-o"></span>
</a>
</li>
</ul>
<p><span class="fa fa-quote-left"></span> A fashion store website that assists customers in locating low-cost, high-quality items (particularly handbags) to meet their specific demands. <span class="fa fa-quote-right"></span></p>
</div>
</div>
</section>
<!--//testimonials-->
<!--/ab -->
<section class="about py-5">
<div class="container pb-lg-3">
<h3 class="tittle text-center">Popular Products</h3>
<div class="row">
<div class="col-md-6 latest-left">
<div class="product-shoe-info shoe text-center">
<img src="images/img1.jpg" class="img-fluid" alt="">
<div class="shop-now"><a href="shop.html" class="btn">Shop Now</a></div>
</div>
</div>
<div class="col-md-6 latest-right">
<div class="row latest-grids">
<div class="latest-grid1 product-men col-12">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/img2.jpg" class="img-fluid" alt="">
<div class="shop-now"><a href="shop.html" class="btn">Shop Now</a></div>
</div>
</div>
</div>
<div class="latest-grid2 product-men col-12 mt-lg-4">
<div class="product-shoe-info shoe text-center">
<div class="men-thumb-item">
<img src="images/img3.jpg" class="img-fluid" alt="">
<div class="shop-now"><a href="shop.html" class="btn">Shop Now</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- //ab -->
<!-- brands -->
<section class="brands py-5" id="brands">
<div class="container py-lg-0">
<div class="row text-center brand-items">
<div class="col-sm-2 col-3">
<a href="#"><span class="fa fa-connectdevelop" aria-hidden="true"></span></a>
</div>
<div class="col-sm-2 col-3">
<a href="#"><span class="fa fa-empire" aria-hidden="true"></span></a>
</div>
<div class="col-sm-2 col-3">
<a href="#"><span class="fa fa-ioxhost" aria-hidden="true"></span></a>
</div>
<div class="col-sm-2 col-3">
<a href="#"><span class="fa fa-first-order" aria-hidden="true"></span></a>
</div>
<div class="col-sm-2 col-3 mt-sm-0 mt-4">
<a href="#"><span class="fa fa-joomla" aria-hidden="true"></span></a>
</div>
<div class="col-sm-2 col-3 mt-sm-0 mt-4">
<a href="#"><span class="fa fa-dropbox" aria-hidden="true"></span></a>
</div>
</div>
</div>
</section>
<!-- brands -->
<!-- footer -->
<footer>
<div class="container">
<div class="row footer-top">
<div class="col-lg-4 footer-grid_section_w3layouts">
<h2 class="logo-2 mb-lg-4 mb-3">
<a href="index.html"><span aria-hidden="true"></span>Handii</a>
</h2>
<p>A fashion store website that assists customers in locating low-cost, high-quality items (particularly handbags) to meet their specific demands.</p>
<h4 class="sub-con-fo ad-info my-4">Catch on Social</h4>
<ul class="w3layouts_social_list list-unstyled">
<li>
<a href="#" class="w3pvt_facebook">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li class="mx-2">
<a href="#" class="w3pvt_twitter">
<span class="fa fa-twitter"></span>
</a>
</li>
<li>
<a href="#" class="w3pvt_dribble">
<span class="fa fa-dribbble"></span>
</a>
</li>
<li class="ml-2">
<a href="#" class="w3pvt_google">
<span class="fa fa-google-plus"></span>
</a>
</li>
</ul>
</div>
<div class="col-lg-8 footer-right">
<div class="w3layouts-news-letter">
<h3 class="footer-title text-uppercase text-wh mb-lg-4 mb-3">Newsletter</h3>
<p>By subscribing to our mailing list you will always get latest news and updates from us.</p>
<form action="#" method="post" class="w3layouts-newsletter">
<input type="email" name="Email" placeholder="Enter your email..." required="">
<button class="btn1"><span class="fa fa-paper-plane-o" aria-hidden="true"></span></button>
</form>
</div>
<div class="row mt-lg-4 bottom-w3layouts-sec-nav mx-0">
<div class="col-md-4 footer-grid_section_w3layouts">
<h3 class="footer-title text-uppercase text-wh mb-lg-4 mb-3">Information</h3>
<ul class="list-unstyled w3layouts-icons">
<li>
<a href="index.html">Home</a>
</li>
<li class="mt-3">
<a href="about.html">About Us</a>
</li>
<li class="mt-3">
<a href="#">Gallery</a>
</li>
<li class="mt-3">
<a href="#">Services</a>
</li>
<li class="mt-3">
<a href="contact.html">Contact Us</a>
</li>
</ul>
</div>
<div class="col-md-4 footer-grid_section_w3layouts">
<!-- social icons -->
<div class="agileinfo_social_icons">
<h3 class="footer-title text-uppercase text-wh mb-lg-4 mb-3">Customer Service</h3>
<ul class="list-unstyled w3layouts-icons">
<li>
<a href="#">About Us</a>
</li>
<li class="mt-3">
<a href="#">Delivery & Returns</a>
</li>
<li class="mt-3">
<a href="#">Waranty</a>
</li>
<li class="mt-3">
<a href="#">Terms & Condition</a>
</li>
<li class="mt-3">
<a href="#">Privacy Plolicy</a>
</li>
</ul>
</div>
<!-- social icons -->
</div>
<div class="col-md-4 footer-grid_section_w3layouts my-md-0 my-5">
<h3 class="footer-title text-uppercase text-wh mb-lg-4 mb-3">Contact Info</h3>
<div class="contact-info">
<div class="footer-address-inf">
<h4 class="ad-info mb-2">Phone</h4>
<p>+91 098 8907 9987</p>
</div>
<div class="footer-address-inf my-4">
<h4 class="ad-info mb-2">Email </h4>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="footer-address-inf">
<h4 class="ad-info mb-2">Location</h4>
<p>Bihar, India</p>
</div>
</div>
</div>
</div>
<div class="cpy-right text-left row">
<p class="col-md-10">© 2022 Handii. All rights reserved | Design by
<a href=""> Rahul</a>
</p>
<!-- move top icon -->
<a href="#home" class="move-top text-right col-md-2"><span class="fa fa-long-arrow-up" aria-hidden="true"></span></a>
<!-- //move top icon -->
</div>
</div>
</div>
</div>
</footer>
<!-- //footer -->
</body>
</html>