HTML footer tag

HTML footer element defines a footer at the end of each section or page. It is a block level element.

<footer>
   <ul>
    <li> <a href="#"> About us </a> </li>
    <li> <a href="#"> Send feedback </a> </li>
    <li> <a href="#"> Forums </a> </li>
   </ul> 
 </footer>
</>

Tag Uses

Specific uses of <footer> tag

It contains the information like the author of a website, copyright information, contact information. It may also contain social media links or document related links.

Tag omission

Both starting and ending tags are necessary for the footer element.

Global Attributes

All the global attributes are applicable on the footer element.



Was this article helpful?