-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
649 lines (588 loc) · 23.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Petes India</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<!-- Favicons -->
<link href="assets/Images/logo.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Jost:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<a href="index.html" class="logo me-auto"
><img src="assets/Images/logo.png" alt="Logo" class="img-fluid"
/></a>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li>
<a class="nav-link scrollto" href="#portfolio">Portfolio</a>
</li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container">
<div class="row">
<div
class="col-lg-6 d-flex flex-column justify-content-center pt-4 pt-lg-0 order-2 order-lg-1"
data-aos="fade-up"
data-aos-delay="200"
>
<h1>Rule Every Road You Take</h1>
<h2>
Pete’s Automotive Products Pvt Ltd pioneered the performance
tuning industry in India
</h2>
</div>
<div
class="col-lg-6 order-1 order-lg-2 hero-img"
data-aos="zoom-in"
data-aos-delay="200"
>
<img
src="assets/Images/stain-remover-how-to-clean-car-engine-2.webp"
class="img-fluid animated"
alt=""
/>
</div>
</div>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients section-bg">
<div class="container">
<div class="row" data-aos="zoom-in">
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img src="assets/Images/1-1.png" class="img-fluid" alt="" />
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img src="assets/Images/1-14.png" class="img-fluid" alt="" />
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img src="assets/Images/1-16.png" class="img-fluid" alt="" />
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img
src="assets/img/clients/client-4.png"
class="img-fluid"
alt=""
/>
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img src="assets/Images/1-6.png" class="img-fluid" alt="" />
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img
src="assets/img/clients/client-6.png"
class="img-fluid"
alt=""
/>
</div>
</div>
</div>
</section>
<!-- End Cliens Section -->
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>We Are Here To Serve You</h2>
</div>
<div class="row content">
<div class="col-lg-12 pt-3 pt-lg-0">
<p>
“Pete’s Automotive Products Pvt Limited” started in January,
2005 to fill the gap in the Indian Automotive Industry. The
Indian market did not have any good tuning products and we
combined forces with Europe’s leading tuning box manufacturer
PSI-Motorsport, Belgium to bring to the Indian customer a
mature, safe and advanced diesel-tuning product. Later we
ventured into Detailing with Chemical Guys and Smartwax.
</p>
<p>
We also are the authorized distributors of Bilstein Shock
absorbers-Germany, H&R-Germany, Milltek Sport Exhaust
systems-UK, Supersprint-Italy, Forge Motorsport Performance
Parts-UK, Quaife-UK, TAROX-Italy, Green Cotton Filters-France,
Powerflex-UK, SPEC clutches-USA, JBS Auto designs-UK, Custom
Code UK, Smart Wax-USA etc dealing with performance & detailing
parts for Automobiles
</p>
<p>
We have recently tied up with Alientech, Italy to distribute
tuning equipment in the country and we are also in the process
of setting up the country’s first Tuning & Detailing Academy.
Stay tuned for the best the world has to offer.
</p>
<p>
Today we have more than 40 agents/dealers/franchisees around the
country and we are in the process of increasing our presence in
the coming months.
</p>
</div>
</div>
</div>
</section>
<!-- End About Us Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>
Having won over thousands of customers all across the country from
2005 on wards the Pete’s Tuning Box is today the country’s most
powerful, smoothest and reliable tuning box.
</p>
</div>
<div class="row">
<div
class="col-xl-4 col-md-6 d-flex align-items-stretch"
data-aos="zoom-in"
data-aos-delay="100"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4><a href="">Performance Tuning</a></h4>
<p>
The most reliable remap for your car. Whether it’s a small or
big car, we can change the characteristics to either increase
outright performance or to give you an overall increase in
efficiency. This is the ultimate CUSTOM TUNE for your car in
India backed by the best tuners in the world – Custom Code,
Diesel Inside, etc.
</p>
</div>
</div>
<div
class="col-xl-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0"
data-aos="zoom-in"
data-aos-delay="200"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4><a href="">Car detailing</a></h4>
<p>
At Smartwax, we understand that your vehicle is more than just
a simple mode of transportation. With our certified
professionals you will receive unparalleled attention to
detail using only the finest techniques and products, and
fast, friendly service to protect your automotive investment
and bring out the full beauty and luster of your vehicle.
</p>
</div>
</div>
<div
class="col-xl-4 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0"
data-aos="zoom-in"
data-aos-delay="300"
>
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="">Off Road Buggies</a></h4>
<p>
We are a Premier Manufacturer of Off-road buggies based in
England. Our Vehicles have been to the Dakar rally raid,
competed in the British Rallycross Championship, Baja
championships in Portugal and Kenyan Off-road Championship. We
have a fantastic product which has blown the socks off
celebrity drivers, the likes of Late Colin Mcrae, etc.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- ======= Gallery Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Gallery</h2>
</div>
<div
class="row portfolio-container"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-img">
<img
src="assets/Images/A/1.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="portfolio-info">
<h4>Mitsubishi Pajero </h4>
<p>Stage 2 Remap</p>
<a
href="assets/Images/A/2.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
><i class="bx bx-plus"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-img">
<img
src="assets/Images/A/3.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="portfolio-info">
<h4>VolksWagen Beetle</h4>
<p>Stage 3 Tuned</p>
<a
href="assets/Images/A/4.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
><i class="bx bx-plus"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-img">
<img
src="assets/Images/A/5.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="portfolio-info">
<h4>Audi RS5</h4>
<p>Stage 1 tuned</p>
<a
href="assets/Images/A/6.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
><i class="bx bx-plus"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-img">
<img
src="assets/Images/A/7.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="portfolio-info">
<h4>Chevrolet Cruze 1.8 NA</h4>
<p>Paint correction</p>
<a
href="assets/Images/A/8.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
><i class="bx bx-plus"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-img">
<img
src="assets/Images/A/9.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="portfolio-info">
<h4>Polo GT TSI</h4>
<p>Air Filter Upgradation</p>
<a
href="assets/Images/A/10.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
><i class="bx bx-plus"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-img">
<img
src="assets/Images/A/11.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="portfolio-info">
<h4>Innova Crysta</h4>
<p>Suspension + Brembo Break Caliper Upgradation</p>
<a
href="assets/Images/A/12.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
><i class="bx bx-plus"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-img">
<img
src="assets/Images/A/13.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="portfolio-info">
<h4>Mazda RX8</h4>
<p>Stage 1 Tuned</p>
<a
href="portfolio-details.html"
class="details-link"
title="More Details"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-img">
<img
src="assets/Images/A/15.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="portfolio-info">
<h4>Toyota Fortuner </h4>
<p>Stage 2 + QuickShifter</p>
<a
href="assets/Images/A/16.jpg"
data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"
title="Card 3"
><i class="bx bx-plus"></i
></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Portfolio Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-5 d-flex align-items-stretch">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>A108 Adam Street, New York, NY 535022</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>[email protected]</p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+1 5589 55488 55s</p>
</div>
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12097.433213460943!2d-74.0062269!3d40.7101282!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb89d1fe6bc499443!2sDowntown+Conference+Center!5e0!3m2!1smk!2sbg!4v1539943755621"
frameborder="0"
style="border: 0; width: 100%; height: 290px"
allowfullscreen
></iframe>
</div>
</div>
<div class="col-lg-7 mt-5 mt-lg-0 d-flex align-items-stretch">
<form
id="submit-form"
method="post"
role="form"
class="php-email-form"
>
<div class="row">
<div class="form-group col-md-6">
<label for="name">Your Name</label>
<input
type="text"
name="name"
class="form-control"
id="name"
required
/>
</div>
<div class="form-group col-md-6">
<label for="name">Your Email</label>
<input
type="email"
class="form-control"
name="email"
id="email"
required
/>
</div>
</div>
<div class="form-group">
<label for="name">Message</label>
<textarea
class="form-control"
name="message"
rows="10"
required
></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">
Your message has been sent. Thank you!
</div>
</div>
<div class="text-center">
<button type="submit">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- End Contact Section -->
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 footer-contact">
<h3>Petes Automobiles</h3>
<p>
Maradu<br />
Kochi, Kerala 682020<br />
India <br /><br />
<strong>Phone:</strong> +91 5589 55488 55<br />
<strong>Email:</strong> [email protected]<br />
</p>
</div>
<div class="col-lg-6 col-md-6 footer-links">
<h4>Our Social Networks</h4>
<p>
Cras fermentum odio eu feugiat lide par naso tierra videa magna
derita valies
</p>
<div class="social-links mt-3">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"
><i class="bx bxl-instagram"></i
></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="container footer-bottom clearfix">
<div class="copyright">
© Copyright <strong><span>Anoop</span></strong
>. All Rights Reserved
</div>
<div class="credits">
Created by <a href="">Anoop</a>
</div>
</div>
</footer>
<!-- End Footer -->
<div id="preloader"></div>
<a
href="#"
class="back-to-top d-flex align-items-center justify-content-center"
><i class="bi bi-arrow-up-short"></i
></a>
<!--Scripts-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$("#submit-form").submit((e) => {
e.preventDefault();
$.ajax({
url: "https://script.google.com/macros/s/AKfycbwqWGU50gFx1iNBmgbtwX3E9kXecZ6XgTRu0hrY4sve39inzx0YbqLOkBHhK6_lpfU/exec",
data: $("#submit-form").serialize(),
method: "post",
success: function (response) {
alert("Form submitted successfully");
window.location.reload();
},
error: function (err) {
alert("Something Error");
},
});
});
</script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"
></script>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>