Home  >  Article  >  Web Front-end  >  HTML tag

HTML tag

(*-*)浩
(*-*)浩Original
2019-09-17 15:50:422813browse

HTML 6c04bd5ca3fcae76e30b72ad730ca86d Tag

HTML <body> tag

##All major browsers support the 6c04bd5ca3fcae76e30b72ad730ca86d tag.

Definition and usage(Recommended learning: HTML introductory tutorial)

The body element defines the body of the document.

The body element contains all the content of the document (such as text, hyperlinks, images, tables and lists, etc.)

Example

A simple HTML document with the most basic required elements:

<html>

<head>
<title>我的第一个 HTML 页面</title>
</head>

<body>
<p>body 元素的内容会显示在浏览器中。</p>
<p>title 元素的内容会显示在浏览器的标题栏中。</p>
</body>

</html>

The above is the detailed content of HTML 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
Previous article:HTML tagNext article:HTML tag