totn HTML

HTML: <footer> tag

This HTML tutorial explains how to use the HTML element called the <footer> tag with syntax and examples.

Description

The HTML <footer> tag is an HTML5 element that defines a footer usually containing copyright or author information in the HTML document. This tag is also commonly referred to as the <footer> element.

Syntax

In HTML, the syntax for the <footer> tag is:

<body>
<footer>
  <p>Text that appears in the footer</p>
</footer>
</body>

Attributes

Only the Global Attributes apply to the <footer> tag. There are no attributes that are specific to the <footer> tag.

Note

Browser Compatibility

The <footer> tag has basic support with the following browsers:

  • Chrome 5+
  • Android 2.2+
  • Firefox 4.0+ (Gecko 2.0+)
  • Firefox Mobile 4.0+ (Gecko 2.0+)
  • Internet Explorer 9.0+ (IE 9.0+)
  • IE Phone 9.0+
  • Opera 11.10+
  • Opera Mobile 11.0+
  • Safari 4.1+ (WebKit)
  • Safari Mobile 5.0+ (iOs 4.2+)

Example

We will discuss the <footer> tag below, exploring examples of how to use the <footer> tag in HTML5, HTML 4.01 Transitional, XHTML 1.0 Transitional, XHTML 1.0 Strict, and XHTML 1.1.