<footer> Tag Examples

Examples of the footer tag in HTML 5

The footer for a section:

<section>
   ...
   <footer>
      <p>... copyright statement or disclaimer ...</p>
   </footer>
</section>

A footer for a document index or other appendix:

<footer>
   <section>
      <header>
         <h2>Index</h2>
      </header>
      ...
   </section>
</footer>