
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create a Footer for a Document or Section in HTML5
Use the HTML <footer> tag to display a footer for a document or section. You can try to run the following code to implement <footer> tag −
Example
<!DOCTYPE html> <html> <head> <title>HTML Footer Tag</title> </head> <body> <header> <h1>Simply Easy Learning</h1> <p>You're visiting tutorialspoint.com - tutorial hub for simply easy learning.</p> </header> <footer> © Copyright 2018, All Rights Reserved </footer> </body> </html>
Advertisements