Home > Article > Web Front-end > HTML tag
All browsers support the 1a309583e26acea4f04ca31122d8c535 declaration.
Definition and Usage
1a309583e26acea4f04ca31122d8c535 The declaration must be the first line of the HTML document, located in < before the ;html> tag. (Recommended study: HTML Getting Started Tutorial)
1a309583e26acea4f04ca31122d8c535 declaration is not an HTML tag; it is an instruction that instructs the web browser about which HTML version to use for writing the page.
In HTML 4.01, the 1a309583e26acea4f04ca31122d8c535 declaration references a DTD because HTML 4.01 is based on SGML. A DTD specifies the rules for a markup language so that browsers can render content correctly.
HTML5 is not based on SGML, so there is no need to reference a DTD.
Tip: Always add the 1a309583e26acea4f04ca31122d8c535 declaration to your HTML document so the browser knows the document type.
Differences between HTML 4.01 and HTML5
There are three types of 1a309583e26acea4f04ca31122d8c535 declarations in HTML 4.01. There is only one in HTML5:
<!DOCTYPE html>
Instance
<!DOCTYPE html>文档的标题 文档的内容......
The above is the detailed content of HTML tag. For more information, please follow other related articles on the PHP Chinese website!