footer

UK[ˈfʊtə(r)] US[ˈfʊtɚ]

n. Footer; a person (or thing) tall... feet

vi. (Scotland) fiddle with, play with, touch

html5<footer> tag syntax

Function: The <footer> tag defines the footer of a section or document. Typically, this element will contain the author's name, the date the document was created, and/or contact information.

Note: If you use a footer to insert contact information, you should use the <address> element within the footer element.

html5<footer> tag example

<!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>

</body>
</html>
Run instance »

Click the "Run instance" button to view the online instance