Loading...
HTML <footer> Tag

HTML <footer> Tag

In this tutorial, we will learn about footer tag in HTML with the help of examples.


Footer tag <footer> is used to specify a footer for a document or section.

Syntax

<footer>.......</footer>

Example

<!DOCTYPE html>
<html>
  <head>
    <title>Footer Tag</title>
  </head>
  <body>
    <footer>
      <p>This is footer of our website.</p>
    </footer>
  </body>
</html>

Output


Global Attribute

Footer Tag support all the global attributes of HTML.


Event Attribute

Footer Tag support all the event attributes of HTML.


Next Tutorial

We hope that this tutorial helped you develop better understanding of the concept of footer tag in HTML.

Keep Learning : )

In the next tutorial, you'll learn about HTML form Tag.

- Related Topics