-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In the travel.html file Footer is added, issue number #1750 is solved.
- Loading branch information
Showing
2 changed files
with
157 additions
and
2 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
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
<nav> | ||
<div class="logo"> | ||
<img src="img/logo.png" id="logo-web"> | ||
<h1 id="logo"><a href="#home">BuddyTrail</a></h1> | ||
<h1 id="logo"><a href="/index.html">BuddyTrail</a></h1> | ||
</div> | ||
|
||
<!-- Hamburger button for mobile --> | ||
|
@@ -159,6 +159,52 @@ <h6>Climate:</h6> | |
</div> | ||
</div> | ||
|
||
<footer> | ||
<div class="footer-container"> | ||
<div style="display: flex" class="footer-container-top"> | ||
<!-- About Us Section --> | ||
<div class="footer-column"> | ||
<h3>About Us</h3> | ||
<p>We are a team of passionate developers creating amazing web experiences.</p> | ||
</div> | ||
|
||
<!-- Quick Links Section --> | ||
<div class="footer-column"> | ||
<h3>Quick Links</h3> | ||
<div> | ||
<li><a href="/index.html">Home</a></li> | ||
<li><a href="/about.html">About</a></li> | ||
<li><a href="/index.html#services">Services</a></li> | ||
<li><a href="/contact.html">Contact</a></li> | ||
</div> | ||
</div> | ||
|
||
<!-- Contact Us Section --> | ||
<div class="footer-column"> | ||
<h3>Contact Us</h3> | ||
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p> | ||
<p>Phone: <a href="tel:+1234567890">+123 456 7890</a></p> | ||
</div> | ||
|
||
<!-- Follow Us Section --> | ||
<div class="footer-column"> | ||
<h3>Follow Us</h3> | ||
<div class="social-icons"> | ||
<a href="https://discord.com/invite/priyaghosal" target="_blank"><i class="fab fa-discord"></i></a> | ||
<a href="https://twitter.com/PriyaGhosa39968" target="_blank"><i class="fab fa-twitter"></i></a> | ||
<a href="https://github.com/PriyaGhosal/BuddyTrail" target="_blank"><i class="fab fa-github"></i></a> | ||
<a href="https://www.linkedin.com/in/priya-ghosal-785771286/" target="_blank"><i | ||
class="fab fa-linkedin-in"></i></a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Footer Bottom --> | ||
<div class="footer-bottom"> | ||
<p>© 2024 Buddy Trail. All rights reserved.</p> | ||
</div> | ||
</div> | ||
</footer> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
</body> | ||
</html> |