References

Collection of references for web development.

HTML html tag

Description

The HTML <html> element represents the root of an HTML document, all over elements must be descendants of this element.

Attributes

Attribute Value Description
xmlns http://www.w3.org/1999/xhtml Specifies the xml namespace for the document.

Example

<!DOCTYPE html>
<html>
	<head>
		<title>Title of the page document</title>
	</head>
	<body>
		<p>The content of the page document...</p>
	</body>
</html>

More Examples