<footer> tag in HTML 5

In this articles i am going to explain about footer tag in HTML 5.
  • 1573

Definition

The HTML <Footer> tag is used for defining the footer of an HTML document or section. Footers usually contain information such as the author of the document, copyright information, links to terms of use, privacy policy, etc.

Support browser in <Footer> tag.

Chrome, Firefox, Opera, Internet Explorer 9 and Safari.

Lets take an example of <Footer> tag

<html>
<body>
    <footer>
  <p>Posted by: wrox </p>
</footer>
</body>
</html>


Output


Clipboard01.jpg

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.