Problem Statement
Which tag is the root element of an HTML document?
Explanation
The html tag is the root element. It wraps everything in the document and tells the browser this is an HTML page. All other tags like head and body must be inside the html tag.
Code Solution
SolutionRead Only
<html>
<head>
<!-- Meta information goes here -->
</head>
<body>
<!-- Visible content goes here -->
</body>
</html>