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

Updated Footer UI in index.html #361

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
98 changes: 50 additions & 48 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1149,65 +1149,67 @@ <h2>Words from Our Clients <span class="highlight">Inspiring Testimonials of Sat
</section>








<footer>
<div id="topbtn" class="topbtn">
<a class="gotopbtn" href="#"><i class="fa-solid fa-angles-up"></i></a>
</div>

<div class="footer-container">
<div class="call-us">
<p>Questions? Call 000-080-000-000</p>
</section>

<!-- About -->
<section class="about" id="about">

<div class="footer-links">
<div class="footer-column">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Services</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Help Center</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Cookies Preferences</a></li>
<li><a href="#">Legal Notices</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Account</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Corporate Information</a></li>
<li><a href="#">Pricing</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Media Center</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>

<div class="footer-links">
<div class="footer-column">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Services</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Help Center</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Cookies Preferences</a></li>
<li><a href="#">Legal Notices</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Account</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Corporate Information</a></li>
<li><a href="#">Pricing</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Media Center</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
</div>

<p>&copy;
<script>document.write(new Date().getFullYear())</script> CabRental. All rights reserved. | Designed and
Developed by Sumit Kumar
</p>
</div>
</div>
</div>

<!-- <p>© 2024 CabRental. All rights reserved. | Designed and Developed by Sumit Kumar</p> -->
<p> &copy;
<script>document.write(new Date().getFullYear())</script> CabRental. All rights reserved. | Designed and
Developed by Sumit Kumar
</p>

</div>

</footer>





<!-- Link to JS -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>

Expand Down
111 changes: 110 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1371,4 +1371,113 @@ body.dark-mode .booking-form .form-group select {
body.dark-mode .booking-form .form-group input::placeholder,
body.dark-mode .booking-form .form-group select::placeholder {
color: #aaa;
}
}





footer {
background-color: #2c3e50;
color: #ecf0f1;
padding: 20px 0;
font-family: 'Arial', sans-serif;
border-radius: 20px;

}

footer a {
color: #ecf0f1;
text-decoration: none;
transition: color 0.3s ease;
}

footer a:hover {
color: #3498db;
}

.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px 0;
border-top: 1px solid #7f8c8d;
border-radius: 20px;
}

footer .call-us p {
font-size: 43x;
margin-bottom: 20px;
color: black !important;
background-color: #f39c12;
padding: 10px;
border-radius: 5px;
}

.footer-links {
display: flex;
justify-content: space-around;
width: 100%;
max-width: 1200px;
margin: auto;
padding: 0 15px;
}

.footer-column {
margin-bottom: 20px;
}

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

.footer-column li {
margin-bottom: 10px;
}

.footer-column li a:hover {
color: #f39c12;
}

.footer-column li a {
font-size: 14px;
}

footer p {
margin: 0;
font-size: 14px;
color: black;
}

footer p:last-child {
margin-top: 15px;
font-size: 12px;
color: #95a5a6;
}

.gotopbtn {

color:blue;
display: inline-block;
font-size: 20px;
transition: background-color 0.3s ease, color 0.3s ease;
}

.gotopbtn:hover {
background-color: transparent; /* Keep it transparent on hover as well */
color: #2980b9; /* Change text/icon color on hover */
}


/* Responsive Design */
@media screen and (max-width: 768px) {
.footer-container {
flex-direction: column;
align-items: center;
}
.footer-column {
width: 100%;
text-align: center;
}
}
Loading