html
  1. html-footer-tag

HTML <footer> Tag

  • The <footer> tag in HTML is used to define the footer of a document or a section within a document.
  • It typically contains information about the author, copyright data, links to related documents, or navigational elements related to the content on the web page.

<footer>
    <p>&copy; 2023 additionalsheet. All rights reserved.</p>
    <nav>
        <ul>
            <li><a href="about.html">About</a></li>
            <li><a href="contact.html">Contact</a></li>
        </ul>
    </nav>
</footer>
Try Playground
  • the <footer> tag contains a copyright notice (<p>) and a simple navigation (<nav>) with links to 'About' and 'Contact' pages.
  • This structure helps organize content within a web page and maintains consistency across different pages.
Published on: