HTML Footer (<footer>)


The <footer> tag is a semantic element in HTML5 that contains:

  • Authorship information
  • Copyright notices
  • Page/site-related navigation links
  • Legal disclaimers
  • Back-to-top links or contact information

html-footer


Syntax

<footer>
  <!-- Footer content goes here -->
</footer> 

Example: Page-Level Footer

<footer>
  <p>&copy; 2025 MyWebsite. All rights reserved.</p>
  <nav>
    <a href="/privacy-policy">Privacy Policy</a> |
    <a href="/terms">Terms of Service</a>
  </nav>
</footer> 

notepad
  • You can have multiple <footer> elements on a page.
  • It should not be contained within <header>, <main>, or <title>.
  • It should not contain primary navigation links to other pages.



OnlineTpoint is a website that is meant to offer basic knowledge, practice and learning materials. Though all the examples have been tested and verified, we cannot ensure the correctness or completeness of all the information on our website. All contents published on this website are subject to copyright and are owned by OnlineTpoint. By using this website, you agree that you have read and understood our Terms of Use, Cookie Policy and Privacy Policy.