Horje
How to create HTML <footer> Element

The <footer> element 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.


Example of HTML <footer> Element

A footer section in a document:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<footer>
  <p>Author: Hege Refsnes</p>
  <p><a href="mailto:[email protected]">[email protected]</a></p>
</footer>

</body>
</html>

Output should be:

Example of HTML <footer> Element





Category:
Web Tutorial
Sub Category:
HTML Semantic
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference