HTML <footer> Tag: The HTML footer tag specifies a footer for a document. The HTML footer element should contain information about authorship, copyright information, contact information, sitemap and related documents.
A <footer> element typically contains:
- authorship information
- copyright information
- contact information
- sitemap
- back to top links
- related documents
HTML <footer> Tag
This HTML<footer>tag supports both the global and the event attributes. The <footer> tag is new in the HTML5. The footer elements require a start tag as well as an end tag.
Syntax: <footer> Text </footer>
Browser compatibility
The HTML<footer> tag is supported by different types of browsers.
- Chrome-6.0
- Firefox-4.0
- Opera-11.1
- Safari-5.0
- Internet Explorer-9.0.
Example:
<!DOCTYPE html> <html> <body> <footer> <p>Posted by: Freshersnow Tutorials</p> <p>© 2019 Tutorials - Learn Free Courses Online • Powered by GeneratePress</p> </footer> </body> </html>
Output:
Posted by: Freshersnow Tutorials
© 2019 Tutorials – Learn Free Courses Online • Powered by GeneratePress