CSS Tools

Footer Builder

Visual footer editor with columns, links, social icons, and color customization.

Footer Columns

Preview

Product

  • Features
  • Pricing
  • Docs

Company

  • About
  • Blog
  • Careers

Legal

  • Privacy
  • Terms
© 2026 MyCompany. All rights reserved.
𝕏
<footer class="footer">
  <div class="footer-container">
    <div class="footer-grid">
      <div class="footer-column">
        <h3 class="footer-heading">Product</h3>
        <ul class="footer-links">
          <li><a href="#">Features</a></li>
          <li><a href="#">Pricing</a></li>
          <li><a href="#">Docs</a></li>
        </ul>
      </div>
      <div class="footer-column">
        <h3 class="footer-heading">Company</h3>
        <ul class="footer-links">
          <li><a href="#">About</a></li>
          <li><a href="#">Blog</a></li>
          <li><a href="#">Careers</a></li>
        </ul>
      </div>
      <div class="footer-column">
        <h3 class="footer-heading">Legal</h3>
        <ul class="footer-links">
          <li><a href="#">Privacy</a></li>
          <li><a href="#">Terms</a></li>
        </ul>
      </div>
    </div>
    <div class="footer-bottom">
      <p>© 2026 MyCompany. All rights reserved.</p>
      <div class="footer-socials">
        <a href="#" aria-label="Twitter">𝕏</a>
        <a href="#" aria-label="GitHub">⊙</a>
      </div>
    </div>
  </div>
</footer>

<style>
.footer {
  background-color: #111827;
  color: #9CA3AF;
  padding: 3rem 1.5rem;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-heading {
  color: #F9FAFB;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.875rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 1.25rem;
}
.footer-socials a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}
</style>

🔒 Dieses Tool läuft vollständig in Ihrem Browser. Es werden keine Daten an einen Server gesendet.