Home  >  Article  >  Web Front-end  >  How to use html footer tag

How to use html footer tag

青灯夜游
青灯夜游Original
2019-05-27 10:58:086426browse

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.

How to use html footer tag

#html How to use footer tag?

The

tag defines the footer of a document or a portion of a document (section).

Description: The

element should contain information about its containing elements. Footers typically contain the document's author, copyright information, links to terms of use, contact information, and more. You can use multiple
elements in a document.

Note: The

tag is a new tag in HTML 5.

html footer tag Example

<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>
<footer>
    <p>PHP中文网:独家原创,永久免费的在线php视频教程,php技术学习阵地!</p>
    <p>Copyright 2014-2017 http://www.php.cn/</p>
</footer>
</body>
</html>

Output:

How to use html footer tag

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn