Skip to content
Open
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
109 changes: 109 additions & 0 deletions Projects/project11/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Footer Design</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #f4f4f4;
}
.footer {
background-color: #222;
color: #fff;
padding: 40px 0;
text-align: center;
}
.footer-container {
width: 80%;
margin: auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.footer-section {
flex: 1;
min-width: 250px;
margin: 10px 0;
}
.footer-section h3 {
margin-bottom: 15px;
}
.footer-section p, .footer-section ul {
color: #bbb;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section ul li a {
color: #bbb;
text-decoration: none;
display: block;
margin-bottom: 8px;
}
.footer-section ul li a:hover {
color: #fff;
}
.social-icons {
margin-top: 15px;
}
.social-icons a {
display: inline-block;
margin: 0 10px;
color: #bbb;
font-size: 20px;
text-decoration: none;
}
.social-icons a:hover {
color: #fff;
}
.footer-bottom {
margin-top: 20px;
border-top: 1px solid #444;
padding-top: 15px;
font-size: 14px;
color: #bbb;
}
</style>
</head>
<body>
<footer class="footer">
<div class="footer-container">
<div class="footer-section">
<h3>About Us</h3>
<p>We provide high-quality products and services that make your life easier and better.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<p>Email: info@example.com</p>
<p>Phone: +123 456 7890</p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="#">&#xf09a;</a> <!-- Facebook -->
<a href="#">&#xf099;</a> <!-- Twitter -->
<a href="#">&#xf16d;</a> <!-- Instagram -->
</div>
</div>
</div>
<div class="footer-bottom">&copy; 2025 YourWebsite | All Rights Reserved</div>
</footer>
</body>
</html>