-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1318 lines (866 loc) · 39.5 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
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
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>SuperKing Tyres</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link href="css/bootnavbar.css" rel="stylesheet">
<style type="text/css">
.pen {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
height: 100vh;
}
.text {
color:#e0dfd7;
font-family: 'Roboto', sans-serif;
padding: 1em 2em;
text-align: center;
font-size: 50px;
font-weight: bold;
}
</style>
</head>
<body>
<header class="hero-anime">
<div class="navigation-wrap bg-light start-header start-style" id="navbar" >
<div class="container">
<div class="row">
<div class="col-12">
<nav class="navbar navbar-expand-md navbar-light">
<a class="navbar-brand" target="_blank"><img src="images/logo.png" alt=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto py-4 py-md-0">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">About Us</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="companyprofile.html">Company Profile</a></li>
<li><a class="dropdown-item" href="Whyus.html">Why us</a></li>
<li><a class="dropdown-item" href="awards.html">Award</a></li>
<li><a class="dropdown-item" href="message.html">CEO Message</a></li>
</ul>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Product</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="otr.html">OTR</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="otr.html">Pneumatic</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Industrial Tyres</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="industrial.html">Pneumatic</a></li>
<li><a class="dropdown-item" href="industrial.html">Solid</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="agriculture.html">Agricultre Tyres</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="flot.html">Flotation</a></li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Bias</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="agriculture.html">Tractor Front</a></li>
<li><a class="dropdown-item" href="agriculture.html">Tractor Rear</a></li>
<li><a class="dropdown-item" href="agriculture.html">Tractor Trailer</a></li>
<li><a class="dropdown-item" href="agriculture.html">Irrigation</a></li>
<li><a class="dropdown-item" href="agriculture.html">Implements-Non Traction</a></li>
<li><a class="dropdown-item" href="agriculture.html">Implements-Traction</a></li>
<li><a class="dropdown-item" href="agriculture.html">ADV</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="radial.html">Radial</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="radial.html">Tractor Rear</a></li>
<li><a class="dropdown-item" href="radial.html">Row Crop </a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="lcv.html">LCV</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Bias</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="lcv.html">Jeep/Van</a></li>
<li><a class="dropdown-item" href="lcv.html">Passenger</a></li>
<li><a class="dropdown-item" href="lcv.html">Light truck</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="wheeler.html">2/3 Wheeler Tyres</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Bias</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="wheeler.html">MotarCycle</a></li>
<li><a class="dropdown-item" href="wheeler.html">Auto/Tuk Tuk</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="sport.html">Sport</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a class="dropdown-item dropdown-toggle" href="#">Bias</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="sport.html">Golf Kart</a></li>
<li><a class="dropdown-item" href="sport.html">Go Kart</a></li>
<li><a class="dropdown-item" href="sport.html">ATV</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="dropdown-item" href="tubes.html">Tubes/Flaps</a></li>
<li><a class="dropdown-item" href="spares.html">Implements Spares</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link " href="tyrecare.html">Tyre Care </a>
</li>
<li class="nav-item">
<a class="nav-link " href="news.html">News And Events</a>
</li>
<li class="nav-item">
<a class="nav-link " href="carrer.html">Career</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact us</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</header>
<br>
<section class="pt-5">
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
<li data-target="#demo" data-slide-to="3"></li>
<li data-target="#demo" data-slide-to="4"></li>
<li data-target="#demo" data-slide-to="5"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/par2.jpeg" alt="Los Angeles" style="width: 100%; opacity: 0.8">
<div class="carousel-caption d-none d-md-block">
<h1 class="text">We Provide
<span
class="txt-rotate text-success"
data-period="2000"
data-rotate='[ "OTR." ]'></span>
</h1>
</div>
<script src="function.js"></script>
</div>
<div class="carousel-item">
<img src="images/slider2.jpg" alt="Chicago" style="width: 100%; opacity: 0.8" >
<div class="carousel-caption d-none d-md-block">
<h1 class="text">We Provide
<span
class="txt-rotate text-success"
data-period="2000"
data-rotate='[ "Industrial Tyres." ]'></span>
</h1>
</div>
</div>
<div class="carousel-item">
<img src="images/slider3.jpg" alt="New York" style="width: 100%; opacity: 0.8">
<div class="carousel-caption d-none d-md-block">
<h1 class="text">We Provide
<span
class="txt-rotate text-success"
data-period="2000"
data-rotate='[ "Agricultural Tyres" ]'></span>
</h1>
</div>
</div>
<div class="carousel-item">
<img src="images/slider4.jpg" alt="Los Angeles" style="width: 100%; opacity: 0.8">
<div class="carousel-caption d-none d-md-block">
<h1 class="text">We Provide
<span
class="txt-rotate text-success"
data-period="2000"
data-rotate='[ "LCV" ]'></span>
</h1>
</div>
</div>
<div class="carousel-item">
<img src="images/slider5.jpg" alt="Los Angeles" style="width: 100%; opacity: 0.8" >
<div class="carousel-caption d-none d-md-block">
<h1 class="text">We Provide
<span
class="txt-rotate text-success"
data-period="2000"
data-rotate='[ "2/3 Wheeler Tyres" ]'></span>
</h1>
</div>
</div>
<div class="carousel-item">
<img src="images/slider6.jpg" alt="Los Angeles" style="width: 100%; opacity: 0.8">
<div class="carousel-caption d-none d-md-block">
<h1 class="text">We Provide
<span
class="txt-rotate text-success"
data-period="2000"
data-rotate='[ "Sport" ]'></span>
</h1>
</div>
</div>
</div>
</div>
</section>
<section class="mt-auto">
<div class="container-fluid">
<h1 class="text-center pt-5" id="about">About us</h1>
<hr class="text-center mx-auto"></hr>
<div class="row">
<div class="col-lg-6 col-md-6 col-12" id="img">
<img src="images/abt.jpg" class="img-fluid">
</div>
<div class="col-lg-6 col-md-6 col-12">
<h3 class="text-center "><b>Who are we</b></h3>
<p class="text-justify" id="cont">
<b>Superking Manufacturers (Tyre) Pvt. Ltd.</b> was founded in <b>1982</b> and is engaged in the manufacturing and exporting of Agricultural Tyres, Two Wheeler & Three Wheeler Tyres, Flotation Implement Tyres, Golf & Go-Kart Tyres, ADV Tyres, etc. We have an efficient Research and Development department for incorporating new trends and techniques in our manufacturing process for increasing the productivity. Our spacious warehouse is used for storing bulk orders systematically.
</p>
</div>
</div>
</div>
</section>
<section >
<div class="container mt-5" id="number">
<div class="row">
</div>
<div class="row text-center ">
<div class="col-lg-3 col-md-3 col-12">
<div class="counter">
<i class="fa fa-code fa-2x"></i>
<h2 class="timer count-title count-number" data-to="100" data-speed="1500"></h2>
<p class="count-text ">Our Customer</p>
</div>
</div>
<div class="col-lg-3 col-md-3 col-12">
<div class="counter">
<i class="fa fa-coffee fa-2x"></i>
<h2 class="timer count-title count-number" data-to="1700" data-speed="1500"></h2>
<p class="count-text ">Happy Clients</p>
</div>
</div>
<div class="col-lg-3 col-md-3 col-12">
<div class="counter">
<i class="fa fa-lightbulb-o fa-2x"></i>
<h2 class="timer count-title count-number" data-to="11900" data-speed="1500"></h2>
<p class="count-text ">Project Complete</p>
</div></div>
<div class="col-lg-3 col-md-3 col-12">
<div class="counter">
<i class="fa fa-bug fa-2x"></i>
<h2 class="timer count-title count-number" data-to="157" data-speed="1500"></h2>
<p class="count-text ">Coffee With Clients</p>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container-fluid">
<h1 class="text-center mt-5" id="about">Testimonials</h1>
<hr class="text-center mx-auto"></hr>
</section>
<section class="testimonial text-center">
<div class="container" id="slider">
<div id="testimonial4" class="carousel slide testimonial4_indicators testimonial4_control_button thumb_scroll_x swipe_x" data-ride="carousel" data-pause="hover" data-interval="5000" data-duration="2000">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="testimonial4_slide">
<img src="https://i.ibb.co/8x9xK4H/team.jpg" class="img-circle img-responsive" />
<p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
<h4>Client 1</h4>
</div>
</div>
<div class="carousel-item">
<div class="testimonial4_slide">
<img src="https://i.ibb.co/8x9xK4H/team.jpg" class="img-circle img-responsive" />
<p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
<h4>Client 2</h4>
</div>
</div>
<div class="carousel-item">
<div class="testimonial4_slide">
<img src="https://i.ibb.co/8x9xK4H/team.jpg" class="img-circle img-responsive" />
<p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
<h4>Client 3</h4>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#testimonial4" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#testimonial4" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</section>
<section id="vedio">
<div class="jumbotron jumbotron-fluid">
<video autoplay muted loop>
<source src="vedio/vedio.mp4" data-src="vedio/vedio.mp4" type="video/mp4">
</video>
<div class="container text-dark ">
<h1 class="display-4 text-light animated bounce">SUPERKING TYRES</h1>
<p class="lead text-light">WE MAKE IT FOR YOU</p>
<sub class="text-light">King Of tyre</sub>
</div>
<!-- /.container -->
</div>
<!-- /.jumbotron -->
</section>
<h1 class="text-center mt-5" id="about">Social Web</h1>
<hr class="text-center mx-auto"></hr>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" />
<div class="social-container-wrap">
<div class="social-container">
<a href="https://twitter.com/superkingtyres" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/SuperkingtyreOfficial/ " class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.youtube.com/channel/UC2c5l3kztpVwFHt0-UwH-aQ?view_as=subscriber" class="googleplus"><i class="fa fa-google-plus"></i></a>
<a href="https://www.youtube.com/channel/UC2c5l3kztpVwFHt0-UwH-aQ?view_as=subscriber" class="codepen"><i class="fa fa-codepen"></i></a>
<a href="https://www.facebook.com/SuperkingtyreOfficial/" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/superking-tyres" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</section>
<section >
<div class="container-fluid">
<div class="parallax">
</div>
<h1 class="text-center pt-5" id="about">Always with you</h1>
<hr class="text-center mx-auto"></hr>
<div class="contain">
<div align="center">
<button class="btn btn-default filter-button" data-filter="all">All</button>
<button class="btn btn-default filter-button" data-filter="album1">Album1</button>
<button class="btn btn-default filter-button" data-filter="album2">Album2</button>
<button class="btn btn-default filter-button" data-filter="album3">Album3</button>
</div>
<br/>
<div class="row" style="opacity: 0.9 ; ">
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album1">
<img src="images/gallery1.jpg" class="img-responsive">
</div>
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album2">
<img src="images/gallery4.jpg" class="img-responsive">
</div>
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album1">
<img src="images/gallery3.jpg" class="img-responsive">
</div>
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album3">
<img src="images/gallery5.jpg" class="img-responsive">
</div>
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album1">
<img src="images/gallery1.jpg" class="img-responsive">
</div>
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album2">
<img src="images/gallery4.jpg" class="img-responsive">
</div>
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album2">
<img src="images/gallery9.jpg" class="img-responsive">
</div>
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album3">
<img src="images/gallery7.jpg" class="img-responsive">
</div>
<div class="gallery_product col-lg-4 col-md-4 col-sm-4 col-xs-6 filter album3">
<img src="images/gallery8.jpg" class="img-responsive">
</div>
</div>
</div>
</section>
<br>
<section class="container-fluid mt-5">
<div class="parallax2">
</div>
<h1 class="text-center pt-5">From Giant to Small Tyres</h1>
<hr class="text-center mx-auto"></hr>
<h2><a href="" class="text-center rounded-bottom btn btn-primary" data-toggle="modal" data-target="#exampleModal">Product Catalogue</a></h2>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Product Catalogue</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="otr.html"> otr tyres</a>
<hr class="text-center mx-auto"></hr>
<br>
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="agriculture.html"> Agriculture Tyres</a>
<hr class="text-center mx-auto"></hr>
<br>
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="industrial.html"> Industrial tyres</a>
<hr class="text-center mx-auto"></hr>
<br>
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="sport.html"> Sports Tyres</a>
<hr class="text-center mx-auto"></hr>
<br>
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="wheeler.html"> 2/3 Wheeler tyres</a>
<hr class="text-center mx-auto"></hr>
<br>
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="tubes.html"> Tubes/flaps </a>
<hr class="text-center mx-auto"></hr>
<br>
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="lcv.html"> LCV </a>
<hr class="text-center mx-auto"></hr>
<br>
<i class="fa fa-angle-double-right" aria-hidden="true"></i>
<a href="spares.html"> Spares</a>
<hr class="text-center mx-auto"></hr>
<br>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</section>
<section mt-5>
<section class="team-page-section">
<div class="container">
<!-- Sec Title -->
<div class="sec-title centered">
<h1 class="text-center" id="about">Our Team</h1>
<hr class="text-center mx-auto"></hr>
</div>
<div class="row clearfix">
<!-- Team Block -->
<!-- Team Block -->
<!-- Team Block -->
<div class="team-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<ul class="social-icons">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
</ul>
<div class="image">
<a href="#"><img src="images/ml dhawan.jpg" alt="" /></a>
</div>
<div class="lower-content">
<h3>Mr. ML DHAWAN</h3>
<h3>founder and managing</h3>
</div>
<!-- Button trigger modal -->
</div>
</div>
<!-- Team Block -->
<div class="team-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<ul class="social-icons">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
</ul>
<div class="image">
<a href="#"><img src="images/puneet.jpg" alt="" /></a>
</div>
<div class="lower-content">
<h3>PUNEET</h3>
</div>
</div>
</div>
<!-- Team Block -->
<!-- Team Block -->
<div class="team-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<ul class="social-icons">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
</ul>
<div class="image">
<a href="#"><img src="images/rakesh.jpg" alt="" /></a>
</div>
<div class="lower-content">
<h3>RAKESH</h3>
</div>
</div>
</div>
<!-- Team Block -->
<div class="team-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<ul class="social-icons">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
</ul>
<div class="image">
<a href="#"><img src="images/cp singh.jpg" alt="" /></a>
</div>
<div class="lower-content">
<h3>CP SINGH</h3>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section >
<!-- Footer -->
<footer class="page-footer font-small unique-color-dark mt-5">
<!-- Footer Links -->
<div class="container text-center text-md-left mt-5">
<!-- Grid row -->
<div class="row mt-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<!-- Content -->
<h6 class="text-uppercase font-weight-bold">SUPERKING</h6>
<hr class="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto" style="width: 60px;">
<p class="text-justify">Here you can use rows and columns to organize your footer content. Lorem ipsum dolor Here you can use rows and columns to organize your footer content. Lorem ipsum dolor and columns to organize your footer content. Lorem ipsum dolor Here you can use rows and columns to organize your footer content. Lorem ipsum dolor </p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase font-weight-bold">Products</h6>
<hr class="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto" style="width: 60px;">
<br>
<a href="otr.html" class="text-dark">OTR tyres</a>
<br>
<a href="industrial.html" class="text-dark">Industrial tyres</a>
<br>
<a href="agriculture.html" class="text-dark">Agriculture tyres</a>
<br>
<a href="lcv.html" class="text-dark">LCV</a>
<br>
<a href="wheeler.html" class="text-dark">2/3 Wheelers tyres</a>
<br>
<a href="sport.html" class="text-dark">Sport tyres </a>
<br>
<a href="tubes.html" class="text-dark">Tubes/Flaps</a>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase font-weight-bold">Useful links</h6>
<hr class="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto" style="width: 60px;">
<br>
<a href="index.html" class="text-dark">Home</a><br>
<a href="about.html" class="text-dark">About us</a><br>
<a href="tyrecare.html" class="text-dark">Tyre care</a><br>
<a href="news.html" class="text-dark">News and Events</a><br>
<a href="carrer.html" class="text-dark">Career</a><br>
<a href="#!" class="text-dark">Contact us</a>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<!-- Links --><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" />
<h6 class="text-uppercase font-weight-bold">Contact</h6>
<hr class="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto" style="width: 60px;">
<p>
<i class="fa fa-home mr-3"></i>Reg. Off. B-14/1 Jhilmil Industrial Area, Delhi-110095(India)</p>
<p>
<i class="fa fa-home mr-3"></i>Work 1 : 28/2A,Site IV Industrial Area,Sahibabad-201010 Distt.Ghaziabad(U.P.)-India</p>
<p>
<i class="fa fa-home mr-3"></i>Work 2 : 14,EPIP,Jharmajri,Baddi-173205,Distt.Solan(H.P.)-India</p>
<p>
<i class="fa fa-envelope mr-3"></i>skmt1982@gmail.com</p>
<p>
<i class="fa fa-phone mr-3"></i>+91-11-43518740 , +91-120-4834100</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
<section>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3500.490918838698!2d77.31230215017533!3d28.674957988824993!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390cfb0b1aaaaaab%3A0x46e21372c5146c6e!2sSuperking%20Manufacturers%20(Tyre)%20Pvt.%20Ltd.!5e0!3m2!1sen!2sin!4v1568621988990!5m2!1sen!2sin" width="100%" height="250" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</section>
<!-- Copyright -->
<hr class="text-center mx-auto"></hr>
<div class="footer-copyright text-center py-3 text-info font-weight-bold">© 2018 Copyright:
</div>
<!-- Copyright -->
</footer>
<!-- Return to Top -->
<a href="javascript:" id="return-to-top"><i class="fa fa-chevron-circle-up" aria-hidden="true"></i></a>
<!-- ICON NEEDS FONT AWESOME FOR CHEVRON UP ICON -->
<script type="text/javascript">
$(document).ready(function()
{
$(window).scroll(function()
{
var top = $(document).scrollTop();
console.log('top');
if((top>120) && (top<200))
{
$('#about').addClass('animated fadeInDown');
$('#img').addClass('animated fadeInLeft');
$('#cont').addClass('animated fadeInRight');
}
if(top>1300)
{
$('#vedio').addClass('animated fadeInDown');
}
if(top>2500)
{
$('#vedio2').addClass('animated slideInLeft');
}
(function ($) {
$.fn.countTo = function (options) {
options = options || {};
return $(this).each(function () {
// set options for current element
var settings = $.extend({}, $.fn.countTo.defaults, {
from: $(this).data('from'),
to: $(this).data('to'),
speed: $(this).data('speed'),
refreshInterval: $(this).data('refresh-interval'),
decimals: $(this).data('decimals')
}, options);
// how many times to update the value, and how much to increment the value on each update
var loops = Math.ceil(settings.speed / settings.refreshInterval),
increment = (settings.to - settings.from) / loops;
// references & variables that will change with each update
var self = this,
$self = $(this),
loopCount = 0,
value = settings.from,
data = $self.data('countTo') || {};
$self.data('countTo', data);
// if an existing interval can be found, clear it first
if (data.interval) {
clearInterval(data.interval);
}
data.interval = setInterval(updateTimer, settings.refreshInterval);
// initialize the element with the starting value
render(value);
function updateTimer() {
value += increment;
loopCount++;
render(value);
if (typeof(settings.onUpdate) == 'function') {
settings.onUpdate.call(self, value);
}
if (loopCount >= loops) {
// remove the interval
$self.removeData('countTo');
clearInterval(data.interval);
value = settings.to;
if (typeof(settings.onComplete) == 'function') {
settings.onComplete.call(self, value);
}
}
}
function render(value) {
var formattedValue = settings.formatter.call(self, value, settings);
$self.html(formattedValue);
}
});
};
$.fn.countTo.defaults = {
from: 0, // the number the element should start at
to: 0, // the number the element should end at
speed: 1000, // how long it should take to count between the target numbers
refreshInterval: 100, // how often the element should be updated
decimals: 0, // the number of decimal places to show
formatter: formatter, // handler for formatting the value before rendering
onUpdate: null, // callback method for every time the element is updated
onComplete: null // callback method for when the element finishes updating
};
function formatter(value, settings) {
return value.toFixed(settings.decimals);
}
}(jQuery));
jQuery(function ($) {