Home >Web Front-end >HTML Tutorial >How can we create footer for document or section in HTML5?
Use the HTML
<!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>
The above is the detailed content of How can we create footer for document or section in HTML5?. For more information, please follow other related articles on the PHP Chinese website!