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

fix(ui): [#225] - UI and Content Inconsistencies Across Website Pages #463

Open
wants to merge 7 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
156 changes: 125 additions & 31 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css"
/>


<nav class="navbar">
<div class="logo">
<a href="index.html" class="logo"><img src="img/logo.png" alt=""></a>
Expand All @@ -33,9 +33,10 @@
</li>
</ul>
</nav>


<style>

.logo img {
height: 60px;
padding-right: 40px;
Expand Down Expand Up @@ -104,7 +105,7 @@
transform: scale(1.1);
border-bottom: 3px solid black; /* Black underline on hover */
}

.navbar ul li a:active {
border-bottom: 3px solid black; /* Black underline when clicked */
}
Expand Down Expand Up @@ -187,8 +188,9 @@
}

.section-img {
margin: 40px 0;
text-align: center;
margin: auto; text-align: center;
height: 626;
width: 429;
}

.section-img img {
Expand All @@ -214,11 +216,11 @@
border-radius: 5px;
border-top: 2px solid #ddd; /* Line between sections */
}

#company-overview {
background-color: #557d80;
}

#mission-vision {
background-color: #d4c6c6;
}
Expand All @@ -241,12 +243,11 @@
</style>
</head>
<body>

<!-- Hero Section -->
<section class="hero">
<h1>About Us</h1>


</section>

<div class="container">
Expand Down Expand Up @@ -289,6 +290,8 @@ <h2>Mission and Vision</h2>
</p>
</section>



<!-- Values and Principles -->
<section id="values-principles" class="values-principles">
<h2>Values and Principles</h2>
Expand Down Expand Up @@ -316,26 +319,117 @@ <h2>Values and Principles</h2>
</ul>
</section>
</div>
<!-- Footer -->
<footer style="background-color: #333; color: #fff; padding: 20px 0;">
<div class="container">
<div style="display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;">
<div>
<h3 style="margin: 0;">CabRental</h3>
<p>&copy; 2024 CabRental. All rights reserved.</p>
</div>
<ul style="list-style: none; display: flex; padding: 0; margin: 0;">
<li style="margin-right: 15px;"><a href="#" style="color: #fff; text-decoration: none;">Privacy Policy</a></li>
<li style="margin-right: 15px;"><a href="#" style="color: #fff; text-decoration: none;">Terms of Service</a></li>
<li style="margin-right: 15px;"><a href="#" style="color: #fff; text-decoration: none;">Contact Us</a></li>
</ul>
<div>
<a href="#" style="color: #fff; margin-right: 10px;"><i class="bx bxl-facebook"></i></a>
<a href="#" style="color: #fff; margin-right: 10px;"><i class="bx bxl-twitter"></i></a>
<a href="#" style="color: #fff; margin-right: 10px;"><i class="bx bxl-instagram"></i></a>

</body>
<footer>
<div class="footer-main">
<div class="footer-container">
<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="#">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
</body>

<div class="footer-bottom">
<p>&copy; 2024 CabRental. All rights reserved. | Designed and Developed by Sumit Kumar</p>
</div>

<style>
/* Footer main styling */
footer {
background-color: #f0f0f0; /* Light grey background like in the image */
color: #333; /* Darker text */
padding: 20px 0;
text-align: center;
}

.footer-main {
background-color: #fff; /* Different background for the main content area */
padding: 20px 0;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}

.footer-links {
display: flex;
justify-content: space-between;
width: 100%;
margin-bottom: 20px;
}

.footer-column {
flex: 1;
text-align: left;
padding: 0 15px;
}

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

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

.footer-column a {
color: #333;
text-decoration: none;
font-size: 14px;
}

.footer-column a:hover {
text-decoration: underline;
}

/* Footer bottom section */
.footer-bottom {
background-color: #ee6d6d; /* Footer bottom color similar to the image */
color: white;
padding: 10px 0;
}

.footer-bottom p {
margin: 0;
font-size: 14px;
}
</style>
</footer>

</html>
Loading
Loading