-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
829 lines (802 loc) · 31.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>PAWSPIRE- Pet Shop Website</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content=" Website" name="keywords" />
<meta content="website" name="description" />
s
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@700&display=swap"
rel="stylesheet"
/>
<!-- Icon Font Stylesheet -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="lib/flaticon/font/flaticon.css" rel="stylesheet" />
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!-- Navbar Start -->
<nav
class="navbar navbar-expand-lg bg-white navbar-light shadow-sm py-3 py-lg-0 px-3 px-lg-0"
>
<a href="index.html" class="navbar-brand ms-lg-5">
<h1 class="m-0 text-uppercase text-dark">
<i class="bi bi-dog fs-1 text-primary me-3"></i>Pawspire
</h1>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="service.html" class="nav-item nav-link">Service</a>
<a href="product.html" class="nav-item nav-link">Product</a>
<a
href="contact.php"
class="nav-item nav-link nav-contact bg-primary text-white px-5 ms-lg-5"
>Contact <i class="bi bi-arrow-right"></i
></a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Hero Start -->
<div class="container-fluid bg-primary py-5 mb-5 hero-header">
<div class="container py-5">
<div class="row justify-content-start">
<div class="col-lg-8 text-center text-lg-start">
<h1 class="display-1 text-uppercase text-dark mb-lg-4">Pet Shop</h1>
<h1 class="text-uppercase text-white mb-lg-4">
Make Your Pets Happy
</h1>
<p class="fs-4 text-white mb-lg-4">
Welcome to Pet Pawspire, your one-stop online destination for all
your furry, feathery, and scaly friends' needs! At Pet Pawspire,
we pride ourselves on offering a wide selection of high-quality
products to keep your beloved pets happy and healthy.
</p>
<div
class="d-flex align-items-center justify-content-center justify-content-lg-start pt-5"
></div>
</div>
</div>
</div>
</div>
<!-- Hero End -->
<!-- Video Modal Start -->
<div
class="modal fade"
id="videoModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content rounded-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Youtube Video</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<!-- 16:9 aspect ratio -->
<div class="ratio ratio-16x9">
<iframe
class="embed-responsive-item"
src="https://www.youtube.com/embed/DWRcNpR6Kdc"
id="video"
allowfullscreen
allowscriptaccess="always"
allow="autoplay"
></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Video Modal End -->
<!-- About Start -->
<div class="container-fluid py-5">
<div class="container">
<div class="row gx-5">
<div class="col-lg-5 mb-5 mb-lg-0" style="min-height: 500px">
<div class="position-relative h-100">
<img
class="position-absolute w-100 h-100 rounded"
src="img/about.jpg"
style="object-fit: cover"
/>
</div>
</div>
<div class="col-lg-7">
<div class="border-start border-5 border-primary ps-5 mb-5">
<h6 class="text-primary text-uppercase">About Us</h6>
<h1 class="display-5 text-uppercase mb-0">
We Keep Your Pets Happy All Time
</h1>
</div>
<h4 class="text-body mb-4">
The aims and objectives of pet shops are as varied as the people
who own and run them. One pet store owner may be motivated by a
lifelong love of animals.
</h4>
<div class="bg-light p-4">
<ul
class="nav nav-pills justify-content-between mb-3"
id="pills-tab"
role="tablist"
>
<li class="nav-item w-50" role="presentation">
<button
class="nav-link text-uppercase w-100 active"
id="pills-1-tab"
data-bs-toggle="pill"
data-bs-target="#pills-1"
type="button"
role="tab"
aria-controls="pills-1"
aria-selected="true"
>
Our Mission
</button>
</li>
<li class="nav-item w-50" role="presentation">
<button
class="nav-link text-uppercase w-100"
id="pills-2-tab"
data-bs-toggle="pill"
data-bs-target="#pills-2"
type="button"
role="tab"
aria-controls="pills-2"
aria-selected="false"
>
Our Vission
</button>
</li>
</ul>
<div class="tab-content" id="pills-tabContent">
<div
class="tab-pane fade show active"
id="pills-1"
role="tabpanel"
aria-labelledby="pills-1-tab"
>
<p class="mb-0">
To enrich the lives of pets and their families by providing
excellent pet care, peace of mind trust and security.We
bring trained dogs and people together to help them overcome
specific challenges, in order to enrich and improve the
lives of both.
</p>
</div>
<div
class="tab-pane fade"
id="pills-2"
role="tabpanel"
aria-labelledby="pills-2-tab"
>
<p class="mb-0">
The largest pet supply companies in the United States are
without a doubt PetSmart and Petco Animal Supplies.
PetSmart, which is headquartered in Phoenix, Arizona, brings
revenue in from brick-and-mortar stores across the U.S., as
well as in Canada and Puerto Rico.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Services Start -->
<div class="container-fluid py-5">
<div class="container">
<div
class="border-start border-5 border-primary ps-5 mb-5"
style="max-width: 600px"
>
<h6 class="text-primary text-uppercase">Services</h6>
<h1 class="display-5 text-uppercase mb-0">
Our Excellent Pet Care Services
</h1>
</div>
<div class="row g-5">
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<i class="flaticon-house display-1 text-primary me-4"></i>
<div>
<h5 class="text-uppercase mb-3">Pet Boarding</h5>
<p>
Pet boarding is leaving your pet at a professional facility
meant to care for them while you're away.
</p>
<a class="text-primary text-uppercase" href=" registeration.php"
>Register Now</a
>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<i class="flaticon-food display-1 text-primary me-4"></i>
<div>
<h5 class="text-uppercase mb-3">Pet Feeding</h5>
<p>
The best dog food will contain the best quality ingredients
and will go easy on your pet’s digestive system. It should
ideally not contain any harmful preservatives and chemicals
and should be processed in as natural a manner as possible.
</p>
<a class="text-primary text-uppercase" href=" registeration.php"
>Register Now</a
>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<i class="flaticon-grooming display-1 text-primary me-4"></i>
<div>
<h5 class="text-uppercase mb-3">Pet Grooming</h5>
<p>
Pet grooming means the act of bathing, brushing, clipping, or
styling a pet , trimming a pet's nails, or providing anal.
</p>
<a class="text-primary text-uppercase" href=" registeration.php"
>Register Now</a
>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<i class="flaticon-cat display-1 text-primary me-4"></i>
<div>
<h5 class="text-uppercase mb-3">Pet Training</h5>
<p>
Owners should note that puppy training is a gradual process
that requires time and patience. It is best to start your
puppy off with training that exposes them to different
environments while they are between 8 and 16 weeks of age.
</p>
<a class="text-primary text-uppercase" href=" registeration.php"
>Register Now</a
>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<i class="flaticon-dog display-1 text-primary me-4"></i>
<div>
<h5 class="text-uppercase mb-3">Pet Exercise</h5>
<p>
Pet exercise is an essential part of pet ownership that offers
a range of physical and mental health benefits. Regular
exercise strengthens the bond between pets and their owners,
prevents boredom and destructive behavior, and keeps pets
healthy and active for years to come.
</p>
<a class="text-primary text-uppercase" href=" registeration.php"
>Register Now</a
>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item bg-light d-flex p-4">
<i class="flaticon-vaccine display-1 text-primary me-4"></i>
<div>
<h5 class="text-uppercase mb-3">Pet Treatment</h5>
<p>
Pet therapy is a guided interaction between a person and a
trained animal. It also involves the animal's handler.
</p>
<a class="text-primary text-uppercase" href=" registeration.php"
>Register Now</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Services End -->
<!-- Products Start -->
<div class="container-fluid py-5">
<div class="container">
<div
class="border-start border-5 border-primary ps-5 mb-5"
style="max-width: 600px"
>
<h6 class="text-primary text-uppercase">Products</h6>
<h1 class="display-5 text-uppercase mb-0">
Products For Your Choice.!
</h1>
</div>
<div class="owl-carousel product-carousel">
<div class="pb-5">
<div
class="product-item position-relative bg-light d-flex flex-column text-center"
>
<img class="img-fluid mb-4" src="img/product-1.jpeg" alt="" />
<h6 class="text-uppercase">Farmina Dry Food - Mastisse Kitten</h6>
<h5 class="text-primary mb-0">Rs.347</h5>
<p>5% off</p>
<div class="btn-action d-flex justify-content-center">
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-cart"></i
></a>
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-eye"></i
></a>
</div>
</div>
</div>
<div class="pb-5">
<div
class="product-item position-relative bg-light d-flex flex-column text-center"
>
<img class="img-fluid mb-4" src="img/product-2.jpeg" alt="" />
<h6 class="text-uppercase">Royal canin Persian kitten breed</h6>
<h5 class="text-primary mb-0">Rs.540</h5>
<p>10% off</p>
<div class="btn-action d-flex justify-content-center">
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-cart"></i
></a>
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-eye"></i
></a>
</div>
</div>
</div>
<div class="pb-5">
<div
class="product-item position-relative bg-light d-flex flex-column text-center"
>
<img class="img-fluid mb-4" src="img/product-3.jpeg" alt="" />
<h6 class="text-uppercase">Sterilised care Adult</h6>
<h5 class="text-primary mb-0">Rs.350</h5>
<p>6% off</p>
<div class="btn-action d-flex justify-content-center">
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-cart"></i
></a>
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-eye"></i
></a>
</div>
</div>
</div>
<div class="pb-5">
<div
class="product-item position-relative bg-light d-flex flex-column text-center"
>
<img class="img-fluid mb-4" src="img/product-4.jpeg" alt="" />
<h6 class="text-uppercase">Gnawlers Lick n Lickables</h6>
<h5 class="text-primary mb-0">Rs.590</h5>
<p>10% off</p>
<div class="btn-action d-flex justify-content-center">
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-cart"></i
></a>
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-eye"></i
></a>
</div>
</div>
</div>
<div class="pb-5">
<div
class="product-item position-relative bg-light d-flex flex-column text-center"
>
<img class="img-fluid mb-4" src="img/product-5.jpeg" alt="" />
<h6 class="text-uppercase">Pedigree food</h6>
<h5 class="text-primary mb-0">Rs 199.00</h5>
<p>20% off</p>
<div class="btn-action d-flex justify-content-center">
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-cart"></i
></a>
<a class="btn btn-primary py-2 px-3" href=""
><i class="bi bi-eye"></i
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Products End -->
<!-- Offer Start -->
<div class="container-fluid bg-offer my-5 py-5">
<div class="container py-5">
<div class="row gx-5 justify-content-start">
<div class="col-lg-7">
<div class="border-start border-5 border-dark ps-5 mb-5">
<h6 class="text-dark text-uppercase">Special Offer</h6>
<h1 class="display-5 text-uppercase text-white mb-0">
Save 50% on all items your first order
</h1>
</div>
<p class="text-white mb-4">
A first order discount is a promotional offer given to customers
who are making their initial/ first purchase in your store. It is
a best way to incentivize new customers to try your products or
services by providing a discount on their first order.
</p>
<a href="" class="btn btn-light py-md-3 px-md-5 me-3">Shop Now</a>
<a href="" class="btn btn-outline-light py-md-3 px-md-5"
>Read More</a
>
</div>
</div>
</div>
</div>
<!-- Offer End -->
<!-- Team Start -->
<div class="container-fluid py-5">
<div class="container">
<div
class="border-start border-5 border-primary ps-5 mb-5"
style="max-width: 600px"
>
<h6 class="text-primary text-uppercase">All Members</h6>
<h1 class="display-5 text-uppercase mb-0">
Qualified Pets Care Professionals
</h1>
</div>
<div
class="owl-carousel team-carousel position-relative"
style="padding-right: 25px"
>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/team-1.jpg" alt="" />
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1" href="#"
><i class="bi bi-twitter"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.instagram.com/?hl=en"
><i class="bi bi-instagram"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.linkedin.com/feed/"
><i class="bi bi-linkedin"></i
></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">Fanky</h5>
<p class="m-0">Grooming Professor</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/team-2.jpg" alt="" />
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1" href="#"
><i class="bi bi-twitter"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.instagram.com/?hl=en"
><i class="bi bi-instagram"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.linkedin.com/feed/"
><i class="bi bi-linkedin"></i
></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">Sofia</h5>
<p class="m-0">Excercise Professor</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/team-3.jpg" alt="" />
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1" href="#"
><i class="bi bi-twitter"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.instagram.com/?hl=en"
><i class="bi bi-instagram"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.linkedin.com/feed/"
><i class="bi bi-linkedin"></i
></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">Nina</h5>
<p class="m-0">Feeding Professor</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/team-4.jpg" alt="" />
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1" href="#"
><i class="bi bi-twitter"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.instagram.com/?hl=en"
><i class="bi bi-instagram"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.linkedin.com/feed/"
><i class="bi bi-linkedin"></i
></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">Clara</h5>
<p class="m-0">trainer Professor</p>
</div>
</div>
<div class="team-item">
<div class="position-relative overflow-hidden">
<img class="img-fluid w-100" src="img/team-5.jpg" alt="" />
<div class="team-overlay">
<div class="d-flex align-items-center justify-content-start">
<a class="btn btn-light btn-square mx-1" href="#"
><i class="bi bi-twitter"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.instagram.com/?hl=en"
><i class="bi bi-instagram"></i
></a>
<a class="btn btn-light btn-square mx-1" href="https://www.linkedin.com/feed/"
><i class="bi bi-linkedin"></i
></a>
</div>
</div>
</div>
<div class="bg-light text-center p-4">
<h5 class="text-uppercase">Maya</h5>
<p class="m-0">Treatment Professor</p>
</div>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- Testimonial Start -->
<div class="container-fluid bg-testimonial py-5" style="margin: 45px 0">
<div class="container py-5">
<div class="row justify-content-end">
<div class="col-lg-7">
<div class="owl-carousel testimonial-carousel bg-white p-5">
<div class="testimonial-item text-center">
<div class="position-relative mb-4">
<img
class="img-fluid mx-auto"
src="img/testimonial-1.jpg"
alt=""
/>
<div
class="position-absolute top-100 start-50 translate-middle d-flex align-items-center justify-content-center bg-white"
style="width: 45px; height: 45px"
>
<i class="bi bi-chat-square-quote text-primary"></i>
</div>
</div>
<p>
Adopting a pet from this shop was one of the best decisions
I've made. The staff was incredibly knowledgeable and helped
me find the perfect furry companion for my family. Our new pet
has brought so much joy and love into our home. Thank you!
</p>
<hr class="w-25 mx-auto" />
<h5 class="text-uppercase">Sarah Johnson</h5>
<span>Dog Lover</span>
</div>
<div class="testimonial-item text-center">
<div class="position-relative mb-4">
<img
class="img-fluid mx-auto"
src="img/testimonial-2.jpg"
alt=""
/>
<div
class="position-absolute top-100 start-50 translate-middle d-flex align-items-center justify-content-center bg-white"
style="width: 45px; height: 45px"
>
<i class="bi bi-chat-square-quote text-primary"></i>
</div>
</div>
<p>
I've been a customer of this pet shop for years, and they
never disappoint. The quality of care they provide to their
animals is exceptional. I've purchased all my pets from here,
and they've always been healthy and well-socialized. Highly
recommended!
</p>
<hr class="w-25 mx-auto" />
<h5 class="text-uppercase">Michael Brown</h5>
<span>German dog</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Footer Start -->
<div class="container-fluid bg-light mt-5 py-5">
<div class="container pt-5">
<div class="row g-5">
<div class="col-lg-3 col-md-6">
<h5
class="text-uppercase border-start border-5 border-primary ps-3 mb-4"
>
Get In Touch
</h5>
<p class="mb-4">
Have a question, suggestion, or just want to say hello? We're all ears! Drop us a line and let's start a conversation about how we can make Pawspire even better for you and your furry friend.
</p>
<p class="mb-2">
<i class="bi bi-geo-alt text-primary me-2"></i>AB Road,Indore
</p>
<p class="mb-2">
<i class="bi bi-envelope-open text-primary me-2"></i
</p>
<p class="mb-0">
<i class="bi bi-telephone text-primary me-2"></i>+91 8334567890
</p>
</div>
<div class="col-lg-3 col-md-6">
<h5
class="text-uppercase border-start border-5 border-primary ps-3 mb-4"
>
Quick Links
</h5>
<div class="d-flex flex-column justify-content-start">
<a class="text-body mb-2" href="#"
><i class="bi bi-arrow-right text-primary me-2"></i>Home</a
>
<a class="text-body mb-2" href="#"
><i class="bi bi-arrow-right text-primary me-2"></i>About Us</a
>
<a class="text-body mb-2" href="#"
><i class="bi bi-arrow-right text-primary me-2"></i>Our
Services</a
>
<a class="text-body mb-2" href="#"
><i class="bi bi-arrow-right text-primary me-2"></i>Meet The
Team</a
>
<a class="text-body mb-2" href="#"
><i class="bi bi-arrow-right text-primary me-2"></i>Latest
Blog</a
>
<a class="text-body" href="#"
><i class="bi bi-arrow-right text-primary me-2"></i>Contact
Us</a
>
</div>
</div>
<div class="col-lg-3 col-md-6">
<h5
class="text-uppercase border-start border-5 border-primary ps-3 mb-4"
>
Newsletter
</h5>
<form action="">
<div class="input-group">
<input
type="text"
class="form-control p-3"
placeholder="Your Email"
/>
<button class="btn btn-primary">Sign Up</button>
</div>
</form>
<h6 class="text-uppercase mt-4 mb-3">Follow Us</h6>
<div class="d-flex">
<a
class="btn btn-outline-primary btn-square me-2"
href="/"
><i class="bi bi-telegram"></i
></a>
<a
class="btn btn-outline-primary btn-square me-2"
href="/"
><i class="bi bi-instagram"></i
></a>
<a
class="btn btn-outline-primary btn-square me-2"
href="/"
><i class="bi bi-linkedin"></i
></a>
<a
class="btn btn-outline-primary btn-square"
href="/"
><i class="bi bi-youtube"></i
></a>
</div>
</div>
<div class="col-12 text-center text-body">
<a class="text-body" href="">Terms & Conditions</a>
<span class="mx-1">|</span>
<a class="text-body" href="">Privacy Policy</a>
<span class="mx-1">|</span>
<a class="text-body" href="">Customer Support</a>
<span class="mx-1">|</span>
<a class="text-body" href="">Payments</a>
<span class="mx-1">|</span>
<a class="text-body" href="">Help</a>
<span class="mx-1">|</span>
<a class="text-body" href="">FAQs</a>
</div>
</div>
</div>
</div>
<div class="container-fluid bg-dark text-white-50 py-4">
<div class="container">
<div class="row g-5">
<div class="col-md-6 text-center text-md-start">
<p class="mb-md-0">
©
<a class="text-white" href="https://freewebsitecode.com/"
>Pawspire</a
>. All Rights Reserved.
</p>
</div>
<div class="col-md-6 text-center text-md-end">
<p class="mb-0">
Designed by
<a class="text-white" href="https://freewebsitecode.com"
>three girls</a
>
</p>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary py-3 fs-4 back-to-top"
><i class="bi bi-arrow-up"></i
></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>