HTML - Footer Tag


Description

The HTML <footer> tag specifies a footer for a document or section.

Example

<!DOCTYPE html>
<html>

   <head>
      <title>HTML Footer Tag</title>
   </head>

   <body>
      <header>
         <h1>Simply Easy Learning</h1>
         <p>You're visiting tutorialspoint.com - tutorial hub for simply easy learning.</p>
      </header>
		
      <footer>
         © Copyright 2014, All Rights Reserved
      </footer>
      
   </body>

</html>

This will produce the following result −

Global Attributes

This tag supports all the global attributes described in HTML Attribute Reference

Event Attributes

This tag supports all the event attributes described in HTML Events Reference

Browser Support

Chrome Firefox IE Opera Safari Android
Yes Yes Yes Yes Yes Yes
html_tags_reference.htm
Advertisements