HTML < footer > Tag - Learn About Website | DaddyFile

0

HTML <footer> Tag

Example

A footer section in a document:

<!DOCTYPE html>
<html>
<body>

<footer>
  <p>Posted by: Hege Refsnes</p>
  <p>Contact information: <a href="mailto:someone@example.com">someone@example.com</a>.</p>
</footer>

<p><strong>Note:</strong> The footer tag is not supported in Internet Explorer 8 and earlier versions.</p>

</body>
</html>

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.

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.

Post a Comment

 
Top