-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
64 lines (57 loc) · 2.82 KB
/
footer.php
File metadata and controls
64 lines (57 loc) · 2.82 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Wrapify</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
</head>
<body>
<footer class = "bg-dark text-white pt-5 pb-4">
<div class = "container text-left text-md-left">
<div class="row text-left text-md-left">
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
<h5 class="text-uppercase mb-4 font-weight-bold text-warning">About Us</h5>
<p>To create an enhanced gifting ecosystem and provide a one-stop solution to make gifting an informed, hassle-free & delightful experience.</p>
</div>
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mt-3">
<h5 class="text-uppercase mb-4 font-weight-bold text-warning">Quick Link</h5>
<p>
<a href="viewmybooking.php" class="text-white" style="text-decoration:none;">View Booking</a>
</p>
<p>
<a href="changepassword.php" class="text-white" style="text-decoration:none;">Change Password</a>
</p>
<p>
<a href="profile.php" class="text-white" style="text-decoration:none;">Manage Your Profile</a>
</p>
<p>
<a href="feedback.php" class="text-white" style="text-decoration:none;">Feedback</a>
</p>
<p>
<a href="addtocart.php" class="text-white" style="text-decoration:none;">Cart</a>
</p>
</div>
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
<h5 class="text-uppercase mb-4 font-weight-bold text-warning">Contact</h5>
<i class="fas fa-envelope"></i>
<a href="mailto:wrapifygiftshop203@gmail.com">wrapifygiftshop203@gmail.com</a><br>
<i class="fas fa-address-card"></i>
<a href="https://goo.gl/maps/niGam1fCxT3hJ3Ur9">Relief Road</a><br>
<i class="fas fa-phone-square"></i>
<a href="tel:+91 9426376768">+91 9426376768</a>
</div>
</div>
<hr class="mb-4">
<div class = "row align-items-center">
<div class="col-md-7 col-lg-8">
<p>Copyright 2022 All Rights Reserved By :
<a href = "#" style="text-decoration:none;">
<strong class="text-warning">Wrapify</strong>
</a>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>