"Reprint please retain the integrity of the content of the Wind network article, if you do not comply with this principle, we will retain the right to pursue legal responsibility"
<html> Label
Definitions and usage
<html> Tag tells the browser that this is an HTML document.
An HTML element is the outermost element in an HTML document.
HTML elements can also be called root elements.
Instance
Simple HTML 5 Document:
<! DOCTYPE html>
<html>
<head>
<title>title of the document Www.ithov.com </title>
</head>
<body>
The content of the document ...
</body>
</html>
Try it for yourself.
Differences between HTML 4.01 and HTML 5
The xmlns attribute in HTML 4.01 is required in XHTML. In fact, it has no effect, but for validation reasons, it is helpful to convert HTML to XHTML. There is no reason to do so in HTML 5, but you can still define the xmlns attribute as "http://www.w3.org/1999/xhtml".
In HTML 5, there is a new attribute: manifest.
Tips and comments
Wind Network (www.ithov.com) Note: If you want to define the xmlns attribute for some reason, the only valid value is "http://www.w3.org/1999/xhtml".
Property
The property value Description manifest URL defines a URL that describes the cached information for the document. The xmlns http://www.w3.org/1999/xhtml defines the XML namespace attribute.
Standard properties
<HTML> tags support standard properties in HTML 5.
Event Properties
<HTML> tags support event properties in HTML 5.