" tag. The body tag defines the main body of the document and contains all the content of the HTML document. The content contained in this tag is the content that users can see, such as text, hyperlinks, images, tables, lists, audio, video, etc."/> " tag. The body tag defines the main body of the document and contains all the content of the HTML document. The content contained in this tag is the content that users can see, such as text, hyperlinks, images, tables, lists, audio, video, etc.">
Home > Article > Web Front-end > What tags are the content of html written in?
The content of
html is written in the "
" tag. The body tag defines the main body of the document and contains all the content of the HTML document. The content contained in this tag is the content that users can see, such as text, hyperlinks, images, tables, lists, audio, video, etc.
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer. The content of
html is written in the "
" tag.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, lists, etc.). Body is an HTML tag used in web pages. Tag is an HTML tag used in web pages to represent the content of a web page. The main part, that is, the content that users can see, can include text, pictures, audio, video, etc.!
Only one
tag can exist in an HTML file.Example: A simple HTML document containing as few required tags as possible:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>文档标题</title> </head> <body> 文档内容...... </body> </html>
Recommended tutorial: "html video tutorial》
The above is the detailed content of What tags are the content of html written in?. For more information, please follow other related articles on the PHP Chinese website!