-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #257 from Antima2004/main
Enhance the footer section
- Loading branch information
Showing
2 changed files
with
135 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -769,27 +769,39 @@ <h3 class="reviewer-name">Aditi Patel</h3> | |
|
||
|
||
<footer> | ||
<div class="footer-wrapper"> | ||
<h5>BuddyTrail ©</h5> | ||
<ul> | ||
<li> | ||
<a href="#" class="twitter" id="social-icons" | ||
><img src="icons/twitter.svg" | ||
/></a> | ||
</li> | ||
<li> | ||
<a href="#" class="instagram" id="social-icons" | ||
><img src="icons/instagram.svg" | ||
/></a> | ||
</li> | ||
<li> | ||
<a href="#" class="youtube" id="social-icons" | ||
><img src="icons/youtube.svg" | ||
/></a> | ||
</li> | ||
</ul> | ||
<div class="footer-container"> | ||
<div class="footer-column"> | ||
<h3>About Us</h3> | ||
<p>We are a team of passionate developers creating amazing web experiences.</p> | ||
</div> | ||
<div class="footer-column"> | ||
<h3>Quick Links</h3> | ||
<ul> | ||
<li><a href="#">Home</a></li> | ||
<li><a href="#">About</a></li> | ||
<li><a href="#">Services</a></li> | ||
<li><a href="#">Contact</a></li> | ||
</ul> | ||
</div> | ||
<div class="footer-column"> | ||
<h3>Contact Us</h3> | ||
<p>Email: [email protected]</p> | ||
<p>Phone: +123 456 7890</p> | ||
</div> | ||
<div class="footer-column"> | ||
<h3>Follow Us</h3> | ||
<div class="social-icons"> | ||
<a href="#"><i class="fab fa-facebook-f"></i></a> | ||
<a href="#"><i class="fa-brands fa-x-twitter"></i></i></a> | ||
<a href="#"><i class="fab fa-instagram"></i></a> | ||
<a href="#"><i class="fab fa-linkedin-in"></i></a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="footer-bottom"> | ||
<p>© 2024 Buddy Trail. All rights reserved.</p> | ||
</div> | ||
</footer> | ||
</footer> | ||
<!-- Deals and Offers Popup --> | ||
<div id="dealsPopup" class="popup"> | ||
<div class="popup-content"> | ||
|
@@ -806,6 +818,9 @@ <h2>Exclusive Deals and Offers!</h2> | |
</button> | ||
</div> | ||
</div> | ||
<!-- this script is for twitter icon starts --> | ||
<script src="https://kit.fontawesome.com/856f4a44d7.js" crossorigin="anonymous"></script> | ||
<!-- this script is for twitter icon ends --> | ||
<script> | ||
// script.js | ||
window.onscroll = function () { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters