HTML footer Tag Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 11 Likes Like Report The <footer> tag in HTML is used to define the footer section of an HTML document.The footer section typically contains information such as contact information, sitemap, back-to-top links, related documents, copyright, etc.The footer tag is a semantic tag included in HTML (in 2014) along with other tags like article, nav, header, etc.It is not mandatory, but adds to clear structure to the document and useful for SEO.HTML Footer Code Example: HTML <!DOCTYPE html> <html> <body> <footer> <a href="https://www.geeksforgeeks.org/about/"> About Us </a>| <a href="https://www.geeksforgeeks.org/legal/privacy-policy/"> Privacy Policy </a>| <a href="https://accounts.zoho.in/signin?servicename=ZohoRecruit&hide_signup=false&serviceurl=%2Frecruit%2FIAMSecurityError.do%3Fisload%3Dtrue&hide_secure=true"> Careers </a> <p>@geeksforgeeks, Some rights reserved</p> </footer> </body> </html> Key Points:The <footer> tag is typically used to wrap content at the bottom of a page or section.The <footer> tag also supports the Global Attributes and Event Attributes in HTML.Contact information inside a <footer> element should go inside an <address> tag.We can have several <footer> elements in one document.Styling the <footer> Tag with CSSBy default, the <footer> tag has only the display: block property. You can customize its style using CSS. HTML <!DOCTYPE html> <html> <head> <style> body { font-family: Arial, sans-serif; } footer { display: flex; justify-content: space-around; background-color: #333; color: #fff; padding: 20px; } .column { width: 27%; } p { font-size: 20px; font-weight: bold; margin-bottom: 10px; } ul { list-style-type: none; padding: 0; } li { margin-bottom: 5px; } </style> </head> <body> <footer> <div class="column"> <p>Company</p> <ul> <li>About Us</li> <li>Careers</li> <li>Privacy Policy</li> <li>Contact Us</li> </ul> </div> <div class="column"> <p>Learn</p> <ul> <li>Algorithms</li> <li>Data Structures</li> <li>Languages</li> <li>CS Subjects</li> <li>Video Tutorials</li> </ul> </div> <div class="column"> <p>Practice</p> <ul> <li>Company-wise</li> <li>Topic-wise</li> <li>Contests</li> <li>Subjective Questions</li> </ul> </div> </footer> </body> </html> Best Practices for Using the HTML <footer> TagAvoid Overloading with Content: While the footer is meant for additional or supplementary content, avoid overloading it with too much information. Stick to key links and essential details to prevent clutter.Ensure Mobile Responsiveness: When designing a footer, make sure that the content is accessible and looks good on all screen sizes. Footer content should be arranged in a user-friendly manner, especially on mobile devices.Use Clear and Descriptive Links: In the footer, links to external sites, social media, or important pages (like privacy policy or terms of service) should be clearly labeled so users know what to expect when clicking.Browser SupportChrome: Supported from version 4.0Firefox: Supported from version 3.5Safari: Supported from version 5.0Edge: Supported from version 12Internet Explorer: Not supported in Internet Explorer 8 and below (works in IE 9 and later with a polyfill)Opera: Supported from version 10.5Mobile Browsers: Most modern mobile browsers (iOS Safari, Android Browser, Chrome Mobile) support the <footer> tag. Create Quiz Comment S Shubrodeep Banerjee Follow 11 Improve S Shubrodeep Banerjee Follow 11 Improve Article Tags : Misc Web Technologies HTML HTML5 Explore HTML BasicsHTML Introduction4 min readHTML Editors4 min readHTML Basics7 min readStructure & ElementsHTML Elements4 min readHTML Attributes7 min readHTML Headings3 min readHTML Paragraphs3 min readHTML Text Formatting4 min readHTML Block and Inline Elements3 min readHTML Charsets4 min readListsHTML Lists3 min readHTML Ordered Lists5 min readHTML Unordered Lists4 min readHTML Description Lists3 min readVisuals & MediaHTML Colors11 min readHTML Links Hyperlinks2 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables9 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms5 min readHTML5 Semantics5 min readHTML URL Encoding4 min readHTML Responsive Web Design11 min readTop 10 Projects For Beginners To Practice HTML and CSS Skills8 min readTutorial ReferencesHTML Tags - A to Z List5 min readHTML Attributes Complete Reference8 min readHTML Global Attributes5 min readHTML5 Complete Reference8 min readHTML5 MathML Complete Reference3 min readHTML DOM Complete Reference15+ min readHTML DOM Audio/Video Complete Reference2 min readSVG Element Complete Reference5 min readSVG Attribute Complete Reference8 min readSVG Property Complete Reference7 min readHTML Canvas Complete Reference4 min read Like