Skip to main content

Footer guide

What is a footer?

A footer is the persistent bottom section of a webpage. It usually contains navigation, legal policies, contact paths, and trust information that users and search engines expect to find quickly.

Updated 2026-02-28

Footer definition and purpose

On modern websites, the footer acts as a structural safety net. It supports discoverability for important pages and gives users a reliable final navigation point after scanning main content.

Footer types

Simple footer

A minimal set of legal links and contact details for simple websites.

Multi-column footer

Grouped navigation for products, support, company, and policies.

Mega footer

A broader information hub used on large content or commerce sites.

Website footer examples

  • SaaS footer: Product docs, status page, pricing, API links, and security/legal links.
  • Agency footer: Service categories, case studies, locations, and proposal/contact paths.
  • Marketplace footer: Buyer/seller flows, help center, trust resources, and policy navigation.

HTML <footer> semantics

Use the semantic <footer> element for document or section-level footer content and pair it with <nav> blocks for grouped links. This improves structural clarity for assistive technologies and crawler parsing.

<footer>
  <nav aria-label="Company">
    <a href="/about">About</a>
    <a href="/contact">Contact</a>
  </nav>
  <nav aria-label="Legal">
    <a href="/privacy">Privacy</a>
    <a href="/terms">Terms</a>
  </nav>
</footer>

SEO and accessibility best practices

  • Use descriptive anchor text for footer links, not generic labels like "click here".
  • Keep your footer links crawlable in HTML and avoid hiding critical links behind scripts.
  • Group links by intent (product, resources, company, legal) so users and crawlers can scan fast.
  • Preserve text contrast and keyboard focus states for all interactive elements.
  • Include consistent legal and trust signals (privacy, terms, contact, copyright).

Common footer mistakes

  • Stuffing dozens of low-value links into one footer block.
  • Using duplicate anchor text for different destinations.
  • Injecting footer links in a way that is not reliably crawlable.
  • Shipping mobile footers with poor tap targets and visual contrast.
  • Forgetting to keep compliance links current across every domain.

Footer implementation checklist

  1. Define footer goals by audience: navigation, trust, legal, conversion, or support.
  2. Design link groups and copy with plain language and predictable labels.
  3. Implement semantic HTML using <footer>, nested <nav>, and accessible headings.
  4. Validate responsiveness, focus order, and contrast on mobile and desktop.
  5. Audit link health and update cadence to keep content accurate over time.

Need centralized rollout across many domains? Use 1Footer to publish one footer update across multiple websites while keeping output crawlable.

Footer FAQ

What is a footer on a website?

A website footer is the section at the bottom of a page used for navigation, legal links, trust signals, and supplemental content.

Does footer content affect SEO?

Yes. Footer links contribute to site architecture and crawl paths, so link quality and structure matter for search performance.

How many links should a footer include?

There is no fixed number, but footers should stay focused on high-value paths users actually need. Overloaded footers dilute clarity.

Should every page use the same footer?

Core legal and trust sections should stay consistent, while domain- or audience-specific link groups can be adapted where needed.

Footer guide cluster

Explore related guides targeting specific footer implementation and optimization intents.

Further footer resources