Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FAQ page footer UI enhnaced and also added all items #1988

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 75 additions & 7 deletions faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<title>BuddyTrail</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->
<link rel="stylesheet" href="about.css" />


<link rel="icon" href="/icons/airplane.svg" />
<link rel="icon" href="https://img.icons8.com/?size=100&id=11808&format=png&color=000000">
Expand Down Expand Up @@ -136,8 +137,7 @@

</style>


main

<style>
/* circle styles */
.circle {
Expand All @@ -156,7 +156,7 @@

</head>

main

<body>
<header>
<div class="container">
Expand Down Expand Up @@ -269,18 +269,86 @@ <h1 class="faq-title" data-aos="fade-right">Frequently Asked Questions</h1>
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>


<style>
.footer-column {
flex: 1;
min-width: 200px;
margin: 10px;
}

.footer-column p {
color: white;
}

.footer-column a {
font-size: 16px;
line-height: 2;
}
#footer-contact-us {
display: flex;
flex-direction: column;
}

.footer-column h3 {
margin-bottom: 5px;
font-size: 18px;
color: #f39c12;
}

.footer-column p,
.footer-column ul {
font-size: 14px;
line-height: 1.5;
}

.footer-column ul {
list-style: none;
padding: 0;
}

.footer-column ul li a {
color: #ffffff;
text-decoration: none;
transition: color 0.3s;
}

.footer-column ul li a:hover {
color: #f39c12;
text-decoration: underline;
}
</style>
<!-- Footer Include -->

<footer>
<div class="container">
<div class="footer-content">
<div class="footer-column-l">
<div class="footer-column">
<h3>About Us</h3>
<p>
Discover and plan affordable trips with BuddyTrail's travel
companion tools.
</p>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="faq.html" class="faq-link">FAQs</a></li>
<li><a href="/#services">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="team.html">Team</a></li>
<li>
<a href="contributor/contributor.html">Our Contributor</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-r">
<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>
Expand All @@ -295,7 +363,7 @@ <h3>Follow Us</h3>

</div>
</div>
main

</footer>

<!-- Circles -->
Expand Down Expand Up @@ -370,7 +438,7 @@ <h3>Follow Us</h3>
<p class="copyright">&copy; 2024 BuddyTrail | All rights reserved.</p>
</div>
</footer>
main

</body>

</html>
Loading