How to add footer for a document or section using HTML5 ? Last Updated : 03 Jun, 2020 Comments Improve Suggest changes Like Article Like Report In this article, we define a footer for a document or section by using the <footer> tag. This tag in HTML is used to define a footer of HTML document. This section contains the footer information (author information, copyright information, carriers, etc). The <footer> tag is used within the body tag. The footer tag is new in the HTML5. The footer elements require a start tag as well as end tag. Syntax: <footer> Contents... </footer> A footer element typically contains authorship information, copyright information, contact information, sitemap, back to top links, related documents, etc. Example: html <!DOCTYPE html> <html> <head> <title> HTML footer Tag </title> <style> a { font-size: 25px; text-decoration: none; } p { font-size: 25px; } </style> </head> <body> <h2> GeeksForGeeks </h2> <h2> Define a footer for a document or section </h2> <footer> <nav> <p> <a href= "https://www.geeksforgeeks.org/about/"> About Us </a>| <a href= "https://www.geeksforgeeks.org/privacy-policy/"> Privacy Policy </a>| <a href= "https://www.geeksforgeeks.org/careers/"> Careers </a> </p> </nav> <p> @geeksforgeeks, Some rights reserved </p> </footer> </body> </html> Output: Supported Browsers: Google Chrome Internet Explorer Firefox Opera Safari Comment More infoAdvertise with us Next Article How to add footer for a document or section using HTML5 ? M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Misc Similar Reads How to define header for a document or section using HTML ? The <header> tag in HTML is used to define the header for a document or a section. It contains information related to the title and heading of the related content. The <header> element is intended to usually contain the sectionâs heading (an h1-h6 element or an <hgroup> element), b 2 min read How to define a title for a document using HTML5 ? In this article, we will define a title for the document by using the <title> tag. This tag in HTML is used to define the title of the HTML document. It sets the title in the browser toolbar. It provides the title for the web page when it is added to favorites. It displays the title for the pa 1 min read How to Create Section Counter using HTML and CSS ? Section counter is like a card and is useful for webpage footer. It contains details about the company. In this article, we will introduce some predicted data about some companies. We divide this article into two sections, in the first section we will create the normal structure then we will work on 3 min read How to define a section in a document in HTML5 ? In this article, we will discuss how to define a section in a document in html5. We can create a section in the document using the Section tag. HTML <section> Tag: Section tags divide content into section and subsection. The section tag is used when there is a requirement for two header, foote 1 min read How to Group Footer Content in Table Form using HTML? To group footer content in a table using HTML, use the <tfoot> tag. This tag works with <thead> and <tbody> to define a table's structure. The <tfoot> tag is a child of the <table> element and a parent to <tr> and <td>, ensuring organized and semantically me 2 min read Like