The HTML element is the top-level element of an HTML document. This HTML tag <html> is the container for all other HTML elements (except for the <!DOCTYPE> tag).
Using the <html> tag to write a simple HTML document.
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<h1>HTML Tag</h1>
<p>The HTML element is the top-level element of an HTML document.</p>
</body>
</html>
<html></html>
<html> tag is placed right under the <!DOCTYPE> tag.<html> tag requires a starting and end tag.<html> contains every other tab that makes up the webpage. That’s why the closing tag </html> is all the way at the bottom. For more information, see http://www.w3schools.com/tags/tag_html.asp
Found a bug in the documentation? Let us know at documentation@code.org