HTML 5: The Markup Language

htmlroot element # T

The html element represents the root of a document.

Content model #

Attribute model #

Element-specific attributes #

manifest = uri
The address of the document’s application cache manifest (which controls caching of content for offline use).

Tag omission #

An html element's start tag may be omitted if the first thing inside the html element is not a comment.

An html element's end tag may be omitted if the html element is not immediately followed by a comment and the element contains a body element that is either not empty or whose start tag has not been omitted.

Typical default display properties #

html {
display: block; }
html:focus {
outline: none; }