Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <footer> Tag


Example

A footer section in a document:

<footer>
  <p>Posted by: Hege Refsnes</p>
  <p>Contact information: <a href="mailto:[email protected]">
  [email protected]</a>.</p>
</footer>
Try it Yourself »

Definition and Usage

The <footer> tag defines a footer for a document or section.

A <footer> element typically contains:

  • authorship information
  • copyright information
  • contact information
  • sitemap
  • back to top links
  • related documents

You can have several <footer> elements in one document.


Browser Support

The numbers in the table specify the first browser version that fully supports the element.

Element
<footer> 5.0 9.0 4.0 5.0 11.1


Tips and Notes

Tip: Contact information inside a <footer> element should go inside an <address> tag.


Global Attributes

The <footer> tag also supports the Global Attributes in HTML.


Event Attributes

The <footer> tag also supports the Event Attributes in HTML.


Related Pages

HTML DOM reference: Footer Object


Default CSS Settings

Most browsers will display the <footer> element with the following default values:

footer {
  display: block;
}