The Content Root of HTML
The Content Root provides an environment for the Content Metas and Content Windows of a web document
The syntax is an html
element with the following attributes and elements:
-
Zero or one count for each Global Attribute
-
The following order of elements:
-
One
head
element -
One
body
element
-
For legacy reasons, the DOCTYPE construct should precede the html
element.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>