DevPlatform
Home
Components
Search
Submit
Earn
Login
Sign Up Free
basic footer - Preview | DevPlatform
DevPlatform
Categories
Accordion
Animation
Box Shadow
Button
Card
Footer
Form
Gallery
Hero Section
Inputs
Loader
Marquee
Modal
Modules
Navbar
Progress Bar
Radio Buttons
Search-Bar
Sections
Slider
Tab
Timeline
Toggle
basic footer
idsachinkumar06762
Feb 10, 2026
4
0
Share
Live Preview
Refresh
Live Editor
HTML
CSS
JS
HTML
CSS
JavaScript
1
<footer> <div class="footer-container"> <div class="footer-content"> <div class="footer-section"> <h3>About Us</h3> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> <div class="social-links"> <a href="#" aria-label="Facebook">f</a> <a href="#" aria-label="Twitter">t</a> <a href="#" aria-label="Instagram">i</a> <a href="#" aria-label="LinkedIn">in</a> </div> </div> <div class="footer-section"> <h3>Quick Links</h3> <ul> <li><a href="#">Home</a></li> <li><a href="#">Services</a></li> <li><a href="#">Products</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul> </div> <div class="footer-section"> <h3>Services</h3> <ul> <li><a href="#">Web Design</a></li> <li><a href="#">Development</a></li> <li><a href="#">Marketing</a></li> <li><a href="#">SEO</a></li> <li><a href="#">Consulting</a></li> </ul> </div> <div class="footer-section"> <h3>Contact Info</h3> <p>123 Main Street<br> Anytown, ST 12345</p> <p>Email: info@example.com<br> Phone: (555) 123-4567</p> </div> </div> <div class="footer-bottom"> <p>© 2026 Your Company Name. All rights reserved. | <a href="#" style="color: #95a5a6; text-decoration: none;">Privacy Policy</a> | <a href="#" style="color: #95a5a6; text-decoration: none;">Terms of Service</a></p> </div> </div> </footer>
1
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; min-height: 100vh; display: flex; flex-direction: column; } main { flex: 1; padding: 2rem; background: #f5f5f5; } footer { background: #2c3e50; color: #ecf0f1; padding: 3rem 2rem 1rem; } .footer-container { max-width: 1200px; margin: 0 auto; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-section h3 { color: #3498db; margin-bottom: 1rem; font-size: 1.2rem; } .footer-section p { line-height: 1.6; margin-bottom: 0.8rem; color: #bdc3c7; } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 0.5rem; } .footer-section ul li a { color: #bdc3c7; text-decoration: none; transition: color 0.3s ease; } .footer-section ul li a:hover { color: #3498db; } .social-links { display: flex; gap: 1rem; margin-top: 1rem; } .social-links a { display: inline-block; width: 40px; height: 40px; background: #34495e; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ecf0f1; text-decoration: none; transition: background 0.3s ease; } .social-links a:hover { background: #3498db; } .footer-bottom { border-top: 1px solid #34495e; padding-top: 1.5rem; text-align: center; color: #95a5a6; font-size: 0.9rem; } @media (max-width: 768px) { .footer-content { grid-template-columns: 1fr; gap: 1.5rem; } footer { padding: 2rem 1rem 1rem; } .social-links { justify-content: center; } } @media (max-width: 480px) { .footer-section h3 { font-size: 1.1rem; } .footer-section p, .footer-section ul li a { font-size: 0.9rem; } }
1
Comments
0
Want to comment?
Please
login
or
sign up
to post comments.
No comments yet
Be the first to comment on this component!
Comments 0
Want to comment?
Please login or sign up to post comments.
No comments yet
Be the first to comment on this component!