Summary -
In this topic, we described about the <footer> tag along with detailed example.
The <footer> tag is new in HTML5. Specifies the footer of the HTML document. The <footer> tag represents the footer of an HTML document or section.
The tag can be specified like <footer></footer> with the footer content nested inside the opening and closing tags.
Footers normally contain the author of the document/section, copyright information, contact information, privacy policy, sitemap, related documents etc. Multiple footers can be code in single HTML document.
Syntax -
<footer>.. text here.. </footer>
Example -
<!DOCTYPE html>
<html>
<head>
<title> address example</title>
</head>
<body>
<footer>
<p><label> Author: TutorialsCampus</label> </p>
<address>
Visit us at: www.tutorialscampus.com<br>
</address>
</footer>
</body>
</html>