Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

<html>

Переклад не закінчено. Будь ласка, допоможіть перекласти цю статтю з англійської.

HTML <html> елемент (або корневий елемент HTML) represents the root of an HTML document. All other elements must be descendants of this element.

Since the <html> element is the first in a document other than comments, it is called the root element. Although this tag can be implied, or not required, with HTML, it is required to be opened and closed in XHTML.

Content categories None.
Permitted content One <head> element, followed by one <body> element.
Tag omission The start tag may be omitted if the first thing inside the <html> element is not a comment.
The end tag may be omitted if the <html> element is not immediately followed by a comment, and it contains a <body> element either that is not empty, or whose start tag is present.
Permitted parent elements As the root element of a document, or wherever a subdocument fragment is allowed in a compound document.
DOM interface HTMLHtmlElement

Атрибути

This element includes the global attributes.

manifest
Specifies the URI of a resource manifest indicating resources that should be cached locally. See Using the application cache for details.
version
Specifies the version of the HTML Document Type Definition that governs the current document. This attribute is not needed, because it is redundant with the version information in the document type declaration.
xmlns 
Specifies the XML Namespace of the document. Default value is "https://www.w3.org/1999/xhtml". This is required in XHTML, and optional in HTML.

Приклад

The DOCTYPE used in the following example indicates HTML5.

<!DOCTYPE html>
<html>
  <head>...</head>
  <body>...</body>
</html>

Специфікації

Specification Status Comment
WHATWG HTML Living Standard
The definition of '<html>' in that specification.
Living Standard No change since last snapshot.
HTML5
The definition of '<html>' in that specification.
Recommendation Added support for the manifest attribute (deprecated later).
Obsoleted the version attribute
HTML 4.01 Specification
The definition of '<html>' in that specification.
Recommendation Deprectated the version attribute

Підтримка браузерами

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 1.0 (Yes) (Yes) (Yes) (Yes)
manifest (Yes) 3.0 (1.9) (Yes) (Yes) (Yes)
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
manifest (Yes) 1.0 (1.9) (Yes) (Yes) (Yes)

Дивіться також

  • MathML top-level element: <math>
  • SVG top-level element: <svg>

Мітки документа й учасники

 Зробили внесок у цю сторінку: yuraantonov
 Востаннє оновлена: yuraantonov,