Footer Generator

Generate website footers with layout templates

Template

Colors

Spacing

40px
32px

Live Preview

Section 1

  • Link 1
  • Link 2
  • Link 3

Section 2

  • Link 1
  • Link 2
  • Link 3

Section 3

  • Link 1
  • Link 2
  • Link 3
© 2024 Company Name. All rights reserved.

Generated CSS

.footer {
  background-color: #1f2937;
  color: #ffffff;
  padding: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

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

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}