Breaking

Wednesday, May 8, 2019

HTML footer Tag

Example

A footer section in a document:
<footer>
  <p>Posted by: Hege Refsnes</p>
  <p>Contact information: <ahref="mailto:someone@example.com">
  someone@example.com</a>.</p>
</footer>
Try it Yourself »

Definition and Usage

The <footer> tag defines a footer for a document or section.
A <footer> element should contain information about its containing element.
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>6.09.04.05.011.1

Differences Between HTML 4.01 and HTML5

The <footer> tag is new in HTML5.


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;
}

No comments:

Post a Comment