Site Footer

Two full fictional "North Ridge Outfitters" pages, each with the same header (logo, Home, Shop, Sale, Account) and a generic hero and body content, and each with its footer region marked off by a "FOOTER" tag and a tinted band. Left, tagged "Overloaded, ungrouped": the footer band holds two dozen links in a dense four-column grid with no headings; four of them — Shop, Home, New Arrivals, and Sale — are bolded and set apart in color from the rest, scattered among Affiliates, Gift Cards, Careers, Investors, and other unrelated links, annotated "Home and Shop, buried among two dozen more links — none of them easy to find." Right, tagged "Minimal, structured": the footer band holds a "Legal" group (Privacy Policy, Terms and Conditions, Accessibility Statement, Cookie Policy) beside a "More" group (Site Map, Help & Support) and a copyright line "© 2026 North Ridge Outfitters," annotated "a few links, clearly grouped — legal, help, and a way back to everything else." Both footers hold roughly the same information — one just makes it findable, and the other buries it in the exact clutter it was supposed to organize.

Background

The footer is the persistent structural region that closes every page’s content, paired with Site Header at the top. It provides secondary utility and institutional context and — together with the header — is among the strongest consistency signals a site can offer: users rely on finding it in the same position with the same content on every page.

together with the header — is among the strongest consistency signals a site can offer: users rely on finding it in the same position with the same content on every page.

Problem

A footer that buries primary navigation or grows unwieldy with dozens of links loses the utility of the links that actually matter.

A footer that buries primary navigation or grows unwieldy with dozens of links loses the utility of the links that actually matter.

Solution

Give the footer a consistent structure — legal/policy links, a copyright notice, optional secondary navigation, help links — keep it positioned consistently on every page, and build it with accessible landmark structure.

Privacy policy, Terms and conditions, Accessibility statement, Cookie policy. These are rarely navigated but must be discoverable — the footer is where users look for them. Consistent footer placement means the user knows where to look regardless of which page they arrived on.

Clarifies ownership and reuse rights. For public-sector sites, an explicit open license (e.g. Open Government Licence) may apply; for commercial sites, a standard copyright notice suffices.

Add secondary navigation

Optional: links to key sections, contact information, or department/team pages — commonly including a link to the site’s site map, the standard place for that last-resort listing to live so it’s reachable from every page without costing space above the fold. Useful on large sites where the footer is a last-resort navigation fallback. For linear transactional flows (checkout, application forms), secondary navigation in the footer is a distraction — users mid-task should not be tempted to navigate away.

Contact, help center, or feedback form — commonly a link to a FAQ page. These serve users who failed their primary task and need a human path out.

Keep a consistent position

Bottom, every page, no exceptions. Users who encounter a page that breaks this pattern experience a mild disorientation that erodes confidence in the site.

Users who encounter a page that breaks this pattern experience a mild disorientation that erodes confidence in the site.

Keep a minimal footprint

An over-long footer with dozens of links dilutes the utility of the links that actually matter.

Footer navigation is supplementary. If users are finding primary navigation only in the footer, the primary header navigation placement has failed.

Two footer mockups for a fictional "North Ridge Outfitters" site. Left, tagged "Primary nav duplicated in footer": the footer repeats the header's own Home, Shop, Sale, and Account links as a full nav row above the legal links. Right, tagged "Footer stays supplementary": the footer holds only a "Legal" group (Privacy Policy, Terms and Conditions, Accessibility Statement) and a "More" group (Site Map, Help & Support) — no primary nav at all. Restating Home and Shop in the footer doesn’t give them a second way to be found — it gives the same two links a second address.

Use an accessible structure

The footer must be wrapped in a <footer> landmark element, so screen reader users can navigate directly to it. See Accessibility.

<footer>
  <nav aria-label="Footer">
    <ul>
      <li><a href="/privacy">Privacy Policy</a></li>
      <li><a href="/terms">Terms and Conditions</a></li>
      <li><a href="/accessibility">Accessibility Statement</a></li>
      <li><a href="/sitemap">Site Map</a></li>
    </ul>
  </nav>
  <p>&copy; 2026 North Ridge Outfitters</p>
</footer>

Patterns

Principles

Sources

GOV.UK Design System (Open Government Licence v3.0) is this page’s sole source — its footer component guidance on legal/policy links, copyright and licensing notices, when secondary navigation belongs in the footer (and when it’s a distraction, as in linear transactional flows), and the <footer> landmark-element requirement.

Created Tue Jun 30 2026 00:00:00 GMT+0000 (Coordinated Universal Time) Updated Tue Aug 25 2026 00:00:00 GMT+0000 (Coordinated Universal Time)