Home  >  Article  >  Web Front-end  >  what is html tag

what is html tag

云罗郡主
云罗郡主Original
2019-01-31 11:08:2324062browse

html html tag syntax

Hypertext Markup Language (foreign language abbreviation: HTML) tags are often called HTML tags. HTML tags are the most basic unit in the HTML language. HTML tags are HTML (standard universal The most important component of an application under markup language).

what is html tag

Function: Tell the browser that it is an HTML document.

Description: The and tags define the start and end points of the document, and between them are the head and body of the document.

Note: Even if the html element is the root element of the document, it does not contain a doctype element. The doctype element must precede the html element.

html html tag example

<html>
<head>
<title>我的第一个 HTML 页面</title>
</head>
<body>
<p>body 元素的内容会显示在浏览器中。</p>
<p>title 元素的内容会显示在浏览器的标题栏中。</p>
</body>
</html>


The above is the detailed content of what is 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:What is the header tag?Next article:What is the header tag?