html Element
Description
The html
element, or root element, indicates the start of the HTML.
html
element has one head
element and one body
element.
Example
The following code shows the html
element in use.
<!DOCTYPE HTML>
<html>
...content and elements omitted...
</html>