-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage1.html
808 lines (794 loc) · 31.2 KB
/
homepage1.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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
<!DOCTYPE html>
<html lang="en">
<head>
<!-- set the encoding of your site -->
<meta charset="utf-8">
<!-- set the viewport width and initial-scale on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SAVING.COM</title>
<!-- include the site stylesheet -->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,200italic,300,300italic,400italic,600,600italic,700,700italic,900,900italic%7cMontserrat:400,700%7cOxygen:400,300,700' rel='stylesheet' type='text/css'>
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/animate.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/icon-fonts.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/main.css">
<!-- include the site stylesheet -->
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<!-- main container of all the page elements -->
<div id="wrapper">
<!-- Page Loader -->
<div id="pre-loader" class="loader-container">
<div class="loader">
<img src="images/svg/rings.svg" alt="loader">
</div>
</div>
<!-- W1 start here -->
<div class="w1">
<!-- mt header style4 start here -->
<header id="mt-header" class="style4">
<!-- mt bottom bar start here -->
<div class="mt-bottom-bar">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<!-- mt logo start here -->
<div class="mt-logo"><a href="#"><img src="./images/logo/savingscom.svg" alt="saving"></a></div>
<!-- mt icon list start here -->
<ul class="mt-icon-list">
<li class="hidden-lg hidden-md">
<a href="#" class="bar-opener mobile-toggle">
<span class="bar"></span>
<span class="bar small"></span>
<span class="bar"></span>
</a>
</li>
<li><a href="#" class="icon-magnifier"></a></li>
<li>
<a href="#" class="bar-opener side-opener">
<span class="bar"></span>
<span class="bar small"></span>
<span class="bar"></span>
</a>
</li>
</ul><!-- mt icon list end here -->
<!-- navigation start here -->
<nav id="nav">
<ul>
<li>
<a class="drop-link" href="homepage1.html">HOME <i class="fa fa-angle-down hidden-lg hidden-md" aria-hidden="true"></i></a>
<div class="s-drop">
<ul>
<li><a href="homepage1.html">Homepage</a></li>
</ul>
</div>
</li>
<li class="drop">
<a href="drivers.html">DRIVERS <i class="fa fa-angle-down" aria-hidden="true"></i></a>
<!-- mt dropmenu start here -->
<div class="mt-dropmenu text-left">
<!-- mt frame start here -->
<div class="mt-frame">
<!-- mt f box start here -->
<div class="mt-f-box">
<!-- mt col3 start here -->
<div class="mt-col-3">
<div class="sub-dropcont">
<strong class="title"><a href="drivers.html" class="mt-subopener">DRIVERS</a></strong>
<div class="sub-drop">
<ul>
<li><a href="drivers.html">ALL DRIVERS</a></li>
</ul>
</div>
</div>
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">404 Pages</a></strong>
<div class="sub-drop">
<ul>
<li><a href="404-page.html">404 Page</a></li>
</ul>
</div>
</div>
</div>
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<div class="mt-col-3">
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">About US</a></strong>
<div class="sub-drop">
<ul>
<li><a href="about-us.html">About</a></li>
</ul>
</div>
</div>
<div class="sub-dropcont">
<strong class="title"><a href="#" class="mt-subopener">Contact US</a></strong>
<div class="sub-drop">
<ul>
<li><a href="contact-us.html">Contact</a></li>
</ul>
</div>
</div>
</div>
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<!-- mt col3 end here -->
<!-- mt col3 start here -->
<div class="mt-col-3 promo">
<div class="mt-promobox">
<a href="#"><img src="http://placehold.it/295x320" alt="promo banner" class="img-responsive"></a>
</div>
</div>
<!-- mt col3 end here -->
</div>
<!-- mt f box end here -->
</div>
<!-- mt frame end here -->
</div>
<!-- mt dropmenu end here -->
<span class="mt-mdropover"></span>
</li>
<li><a href="about-us.html">About</a></li>
<li>
<a class="drop-link" href="contact-us.html">Contact <i class="fa fa-angle-down hidden-lg hidden-md" aria-hidden="true"></i></a>
<div class="s-drop">
<ul>
<li><a href="contact-us.html">Contact</a></li>
</ul>
</div>
</li>
</ul>
</nav>
<!-- mt icon list end here -->
</div>
</div>
</div>
</div>
<!-- mt bottom bar end here -->
<span class="mt-side-over"></span>
</header><!-- mt header style4 end here -->
<!-- mt side menu start here -->
<div class="mt-side-menu">
<!-- mt holder start here -->
<div class="mt-holder">
<a href="#" class="side-close"><span></span><span></span></a>
<strong class="mt-side-title">MY ACCOUNT</strong>
<!-- mt side widget start here -->
<div class="mt-side-widget">
<header>
<span class="mt-side-subtitle">SIGN IN</span>
<p>Welcome back! Sign in to Your Account</p>
</header>
<form action="#">
<fieldset>
<input type="text" placeholder="Username or email address" class="input">
<input type="password" placeholder="Password" class="input">
<div class="box">
<span class="left"><input class="checkbox" type="checkbox" id="check1"><label for="check1">Remember Me</label></span>
<a href="#" class="help">Help?</a>
</div>
<button type="submit" class="btn-type1">Login</button>
</fieldset>
</form>
</div>
<!-- mt side widget end here -->
<div class="or-divider"><span class="txt">or</span></div>
<!-- mt side widget start here -->
<div class="mt-side-widget">
<header>
<span class="mt-side-subtitle">CREATE NEW ACCOUNT</span>
<p>Create your very own account</p>
</header>
<form action="#">
<fieldset>
<input type="text" placeholder="Username or email address" class="input">
<button type="submit" class="btn-type1">Register</button>
</fieldset>
</form>
</div>
<!-- mt side widget end here -->
</div>
<!-- mt holder end here -->
</div><!-- mt side menu end here -->
<!-- mt search popup start here -->
<div class="mt-search-popup">
<div class="mt-holder">
<a href="#" class="search-close"><span></span><span></span></a>
<div class="mt-frame">
<form action="#">
<fieldset>
<input type="text" placeholder="Search...">
<span class="icon-microphone"></span>
<button class="icon-magnifier" type="submit"></button>
</fieldset>
</form>
</div>
</div>
</div><!-- mt search popup end here -->
<!-- mt main slider start here -->
<div class="mt-main-slider">
<!-- slider banner-slider start here -->
<div class="slider banner-slider">
<!-- holder start here -->
<div class="holder text-center" style="background-image: url(./img/2.png);">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="text centerize">
<strong class="title">GET YOUR HOSPITALITY</strong>
<h1>FIND RIKSHAW</h1>
<h2>NOW</h2>
<div class="txt">
</div>
<a href="product-detail.html" class="shop">CheckOut now</a>
</div>
</div>
</div>
</div>
</div>
<!-- holder end here -->
<!-- holder start here -->
<div class="holder text-center" style="background-image: url(./img/15.png);">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="text right">
<strong class="title">WITH</strong>
<h1>BEST DRIVERS</h1>
<h2>AVAILABLE</h2>
<div class="txt">
</div>
<a href="product-detail.html" class="shop">HIRE NOW</a>
</div>
</div>
</div>
</div>
</div>
<!-- holder end here -->
<!-- holder start here -->
<!-- <div class="holder text-center" style="background-image: url(http://placehold.it/1920x585);">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="text">
<strong class="title">FURNITURE DESIGNS IDEAS</strong>
<h1>CARDBOARD</h1>
<h2> Sofas and Armchairs</h2>
<div class="txt">
<p>Consectetur adipisicing elit. Beatae accusamus, optio, repellendus inventore</p>
</div>
<a href="product-detail.html" class="shop">shop now</a>
</div>
</div>
</div>
</div>
</div> -->
<!-- holder end here -->
</div>
<!-- slider regular end here -->
</div><!-- mt main slider end here -->
<!-- mt main start here -->
<main id="mt-main">
<div class="container">
<div class="row">
<div class="col-xs-12">
<!-- banner frame start here -->
<div class="banner-frame">
<!-- banner-1 start here -->
<div class="banner-1 wow fadeInLeft" data-wow-delay="0.4s">
<img alt="image description" src="img/10.jpg">
<div class="holder">
<h2>New User <br>Account</h2>
<div class="txts">
<a class="btn-shop" href="product-detail.html">
<span>CheckOut now</span>
<i class="fa fa-angle-right"></i>
</a>
<div class="discount">
<span>-20%</span>
</div>
</div>
</div>
</div>
<!-- banner-1 end here -->
<!-- banner-box first start here -->
<div class="banner-box first">
<!-- banner-2 start here -->
<div class="banner-2 wow fadeInUp" data-wow-delay="0.4s">
<img alt="image description" src="img/15.png">
<div class="holder">
<h2>Our Daily Costemers <br>109</h2>
</div>
</div>
<!-- banner-2 end here -->
<!-- banner-3 start here -->
<div class="banner-3 right wow fadeInDown" data-wow-delay="0.4s">
<img alt="image description" src="img/4.png">
<div class="holder">
<h2>Our Daily new Costemers <br>10</h2>
<a href="product-detail.html" class="shop">CheckOut NOW</a>
</div>
</div>
<!-- banner-3 end here -->
</div>
<!-- banner-box first end here -->
<!-- banner-4 start here -->
<div class="banner-4 hidden-sm wow fadeInRight" data-wow-delay="0.4s">
<img alt="image description" src="img/11.jpg">
<div class="holder">
<h2>Our Drivers <br>40</h2>
<a class="btn-shop add" href="product-detail.html">
<span>hire me</span>
<i class="fa fa-angle-right"></i>
</a>
</div>
</div>
<!-- banner-4 end here -->
</div>
<!-- banner frame end here -->
<!-- mt producttabs start here -->
<div class="mt-producttabs wow fadeInUp" data-wow-delay="0.4s">
<!-- producttabs start here -->
<ul class="producttabs">
<li><a href="#tab1" class="active">AVERAGE PRICE</a></li>
</ul>
<!-- producttabs end here -->
<div class="tab-content text-center">
<div id="tab1">
<!-- tabs slider start here -->
<div class="tabs-slider">
<!-- slide start here -->
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="hostels.html"><img src="img/hostel to vidya.JPG" alt="image description"></a>
<span class="caption">
<span class="new">NEW</span>
</span>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="hostels.html">Hostel To VidhyaNagar</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 17.00</span></span>
</div>
</div><!-- mt product1 center end here -->
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="drivers.html"><img src="img/college to vidyanamgar.JPG" alt="image description"></a>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="drivers.html">Collage To VidhyaNagar</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 16.00</span></span>
</div>
</div>
<!-- mt product1 center end here -->
</div>
<!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="hostels.html"><img src="img/hostel to nadiad.JPG" alt="image description"></a>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="hostels.html">Hostel To Nadiad</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 14.00</span></span>
</div>
</div><!-- mt product1 center end here -->
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="drivers.html"><img src="img/college to nadia.JPG" alt="image description"></a>
<span class="caption">
</span>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="drivers.html">Collage to Nadiad</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 15.00</span></span>
</div>
</div>
<!-- mt product1 center end here -->
</div>
<!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="hostels.html"><img src="img/hostel.png" alt="image description"></a>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="hostels.html">Hostel To Other</a></strong>
<span class="price"><i class="fa"></i> <span>Not fixed</span></span>
</div>
</div><!-- mt product1 center end here -->
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="drivers.html"><img src="img/college to other.JPG" alt="image description"></a>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="drivers.html">Collage To Other</a></strong>
<span class="price"><i class="fa"></i> <span>Not Fixed</span></span>
</div>
</div>
<!-- mt product1 center end here -->
</div>
<!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="drivers.html"><img src="img/nadiad to changa.JPG" alt="image description"></a>
<span class="caption">
<span class="off">15% Off</span>
<span class="new">NEW</span>
</span>
<ul class="mt-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star-o"></i></li>
</ul>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="drivers.html">Nadiad To Changa (Day)</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 14.00</span></span>
</div>
</div><!-- mt product1 center end here -->
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="drivers.html"><img src="img/vidya to changa.JPG" alt="image description"></a>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="drivers.html">VidhyaNagar To Changa (Day)</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 15.00</span></span>
</div>
</div>
<!-- mt product1 center end here -->
</div>
<!-- slide end here -->
<!-- slide start here -->
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="drivers.html"><img src="img/nadiad to changa.JPG " alt="image description"></a>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="drivers.html">Nadiad To Changa (Night) Special</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 170.00</span></span>
</div>
</div><!-- mt product1 center end here -->
<!-- mt product1 center start here -->
<div class="mt-product1 mt-paddingbottom20">
<div class="box">
<div class="b1">
<div class="b2">
<a href="drivers.html"><img src="img/vidya to changa.JPG" alt="image description"></a>
<ul class="links">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="drivers.html">VidhyaNagar To Changa(Night) special</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 170.00</span></span>
</div>
</div>
<!-- mt product1 center end here -->
</div>
<!-- slide end here -->
</div>
<!-- tabs slider end here -->
</div>
</div>
</div>
<!-- mt producttabs end here -->
</div>
</div>
</div>
<!-- mt bestseller start here -->
<div class="mt-bestseller bg-grey text-center wow fadeInUp" data-wow-delay="0.4s">
<div class="container">
<div class="row">
<div class="col-xs-12 mt-heading text-uppercase">
<h2 class="heading">BEST DRIVERS</h2>
<p>EXCEPTEUR SINT OCCAECAT</p>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="bestseller-slider">
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 large">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="img/16.png" alt="image description"></a>
<span class="caption">
<span class="best-price">Best Price</span>
</span>
<ul class="links add">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Chimanbhai</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 14.00</span></span>
</div>
</div><!-- mt product1 center end here -->
</div>
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 large">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="img/21.jpg" alt="image description"></a>
<ul class="links add">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Ramanbhai</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 16.00</span></span>
</div>
</div><!-- mt product1 center end here -->
</div>
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 large">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="img/18.png" alt="image description"></a>
<ul class="links add">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Maksudbhai</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 17.00</span></span>
</div>
</div><!-- mt product1 center end here -->
</div>
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 large">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="img/22.jpg" alt="image description"></a>
<span class="caption">
<span class="best-price">Best Price</span>
</span>
<ul class="links add">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Rameshbhai</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 14.00</span></span>
</div>
</div><!-- mt product1 center end here -->
</div>
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 large">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="img/24.jpg" alt="image description"></a>
<ul class="links add">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Ravibhai</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 15.00</span></span>
</div>
</div><!-- mt product1 center end here -->
</div>
<div class="slide">
<!-- mt product1 center start here -->
<div class="mt-product1 large">
<div class="box">
<div class="b1">
<div class="b2">
<a href="product-detail.html"><img src="img/27.jpg" alt="image description"></a>
<ul class="links add">
<li><a href="#"><i class="icomoon icon-exchange"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="txt">
<strong class="title"><a href="product-detail.html">Rambhai</a></strong>
<span class="price"><i class="fa"></i> <span>₹ 16.00</span></span>
</div>
</div><!-- mt product1 center end here -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- mt bestseller end here -->
</main><!-- mt main end here -->
<!-- footer of the Page -->
<footer id="mt-footer" class="style1 wow fadeInUp" data-wow-delay="0.4s">
<!-- Footer Holder of the Page -->
<div class="footer-holder dark">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3 mt-paddingbottomsm">
<!-- F Widget About of the Page -->
<div class="f-widget-about">
<div class="logo">
<a href="index.html"><img src="./images/logo/savingscom.svg" alt="Schon"></a>
</div>
<!-- Social Network of the Page end -->
</div>
<!-- F Widget About of the Page end -->
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 mt-paddingbottomxs">
<!-- Footer Tabs of the Page -->
<div class="f-widget-tabs">
<h3 class="f-widget-heading">Services</h3>
<ul class="list-unstyled tabs">
<li><a href="#">Nadiad to Changa</a></li>
<li><a href="#">VidhyaNagar to Changa</a></li>
<li><a href="#">Changa to Nadiad</a></li>
<li><a href="#">Changa to VidhyaNagar</a></li>
<li><a href="#">Rickshaw Services</a></li>
</ul>
</div>
<!-- Footer Tabs of the Page -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3 text-right">
<!-- F Widget About of the Page -->
<div class="f-widget-about">
<h3 class="f-widget-heading">Information</h3>
<ul class="list-unstyled address-list align-right">
<li><i class="fa fa-map-marker"></i><address>Om Hostel<br>Changa Nadiad</address></li>
<li><i class="fa fa-phone"></i><a href="tel:15553332211">+91 9999999999</a></li>
</ul>
</div>
<!-- F Widget About of the Page end -->
</div>
</div>
</div>
</div>
<!-- Footer Holder of the Page end -->
<!-- Footer Area of the Page -->
<div class="footer-area">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6">
<p>© <a href="index.html">Savings.com</a> - All rights Reserved</p>
</div>
<div class="col-xs-12 col-sm-6 text-right">
<div class="bank-card">
<img src="images/bank-card.png" alt="bank-card">
</div>
</div>
</div>
</div>
</div>
<!-- Footer Area of the Page end -->
</footer><!-- footer of the Page end -->
</div><!-- W1 end here -->
<span id="back-top" class="fa fa-arrow-up"></span>
</div>
<!-- include jQuery -->
<script src="js/jquery.js"></script>
<!-- include jQuery -->
<script src="js/plugins.js"></script>
<!-- include jQuery -->
<script src="js/jquery.main.js"></script>
</body>
</html>