Home > Article > Web Front-end > How to use html body tag
html The body tag is the body part of a web page, which is used to define the main content of the web page and is also a necessary part of an HTML document. The body element contains all the content of the document (such as text, hyperlinks, images, tables and lists, etc.)
html How to use the body tag? What does the tag body mean?
The tag body is the body part of a web page, which is used to define the main content of the web page and is also a necessary part of an HTML document.
Function: Define the body of the document.
Note: The body element contains all the content of the document (such as text, hyperlinks, images, tables and lists, etc.)
Note: In HTML 4.01, the "rendering" of all body elements Properties" are deprecated. In XHTML 1.0 Strict DTD, all "rendering attributes" of the body element are not supported.
html body tag usage example
<html> <head> <title>我的第一个 HTML 页面</title> </head> <body> <p>body 元素的内容会显示在浏览器中。</p> <p>title 元素的内容会显示在浏览器的标题栏中。</p> </body> </html>
Effect output:
The above is the detailed content of How to use html body tag. For more information, please follow other related articles on the PHP Chinese website!