-
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.
Merge pull request #1733 from shalomrionafernandes/footer
Enhanced the ui of footer
- Loading branch information
Showing
5 changed files
with
1,697 additions
and
1,487 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 |
---|---|---|
|
@@ -753,6 +753,43 @@ <h2>Suggestions/Questions</h2> | |
<div class="footer-column"> | ||
<h3>About Us</h3> | ||
<p>Discover and plan affordable trips with BuddyTrail's travel companion tools.</p> | ||
<!-- Newsletter Form Section --> | ||
<style> | ||
.footer-column.newsletter { | ||
max-width: 300px; | ||
margin: 0 auto; | ||
text-align: center; | ||
} | ||
#newsletter-form { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
#email { | ||
width: 100%; | ||
margin-bottom: 10px; | ||
padding: 8px; | ||
box-sizing: border-box; | ||
} | ||
button[type="submit"] { | ||
width: 100px; | ||
padding: 6px; | ||
font-size: 14px; | ||
background-color: #007bff; | ||
} | ||
#subscription-message { | ||
font-size: 14px; | ||
margin-top: 10px; | ||
} | ||
</style> | ||
<div class="footer-column newsletter" id="newsletter"> | ||
<h3>Subscribe to Our Newsletter</h3> | ||
<form id="newsletter-form"> | ||
<input type="email" id="email" placeholder="Enter your email" required /> | ||
<button type="submit">Subscribe</button> | ||
</form> | ||
<p id="subscription-message"></p> | ||
</div> | ||
</div> | ||
|
||
<!-- Quick Links Section --> | ||
|
@@ -789,9 +826,7 @@ <h3>Legal Links</h3> | |
<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 --> | ||
<!-- Follow Us Section --> | ||
<div class="footer-column"> | ||
<h3>Follow Us</h3> | ||
<div class="social-icons"> | ||
|
@@ -801,42 +836,6 @@ <h3>Follow Us</h3> | |
<a href="https://www.linkedin.com/in/priya-ghosal-785771286/" target="_blank"><i class="fab fa-linkedin-in"></i></a> | ||
</div> | ||
</div> | ||
|
||
<!-- Newsletter Form Section --> | ||
<style> | ||
.footer-column.newsletter { | ||
max-width: 300px; | ||
margin: 0 auto; | ||
text-align: center; | ||
} | ||
#newsletter-form { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
#email { | ||
width: 100%; | ||
margin-bottom: 10px; | ||
padding: 8px; | ||
box-sizing: border-box; | ||
} | ||
button[type="submit"] { | ||
width: 100px; | ||
padding: 6px; | ||
font-size: 14px; | ||
} | ||
#subscription-message { | ||
font-size: 14px; | ||
margin-top: 10px; | ||
} | ||
</style> | ||
<div class="footer-column newsletter" id="newsletter"> | ||
<h3>Subscribe to Our Newsletter</h3> | ||
<form id="newsletter-form"> | ||
<input type="email" id="email" placeholder="Enter your email" required /> | ||
<button type="submit">Subscribe</button> | ||
</form> | ||
<p id="subscription-message"></p> | ||
</div> | ||
</div> | ||
|
||
|
Oops, something went wrong.