Menu
The html tag, or Document/Root element, is used as the top level, or root, of an HTML document.
The <html> tag represents the container of all other HTML elements besides the <!DOCTYPE> tag.
<!DOCTYPE html>
<html lang="en">
<head>
<title>This is the document's title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is some body content.</p>
</body>
</html>xmlns
Provides the XML namespace.
Have a code example of <html>? Submit a codepen.io demo and we'll showcase it here ↴