Home > Article > Web Front-end > How to use html footer tag
The
footer tag defines the footer of a document or a portion of a document (section). The footer element should contain information about its containing element. Footers typically contain the document's author, copyright information, links to terms of use, contact information, and more. You can use multiple footer elements in a document.
#html How to use footer tag?
The
Description: The
Note: The
html footer tag Example
<!DOCTYPE html> <html> <meta charset="UTF-8"> <body> <footer> <p>PHP中文网:独家原创,永久免费的在线php视频教程,php技术学习阵地!</p> <p>Copyright 2014-2017 //m.sbmmt.com/</p> </footer> </body> </html>
Output:
The above is the detailed content of How to use html footer tag. For more information, please follow other related articles on the PHP Chinese website!