<html> … </html> | The HTML <html> element represents the root (top-level element) of an HTML document, so itis also referred to as the root element. All other elements must be descendants of this element. |
Example:
<!DOCTYPE html>
<html lang="en">
<head>...</head>
<body>...</body>
</html>