A footer section in a document:
<footer>
<p>Posted by: Hege Refsnes</p>
<p>Contact information: <a href="mailto:someone@example.com">someone@example.com</a>.</p>
</footer>The <footer> tag defines a footer for a document or section.
A <footer> element should contain information about its containing element.
<footer>
You can have several <footer> elements in one document.
Tip: Contact information inside a <footer> element should go inside an <address> tag.
Most browsers will display the <footer> element with the following default values:
footer {
display: block;
}