[<HTML>...</HTML>]

W3 3.2y
4.0y
NS 3.0y
4.0y
IE 3.0y
4.0y
TV 1.2y
2.1y
Description

The container for a complete HTML-document.


DTD
<!ENTITY % html.content "HEAD, BODY">

<!ELEMENT HTML O O (%html.content;)    -- document root element -->
<!ATTLIST HTML
  %i18n;                               -- lang, dir --
  >
from the HTML 4.0 DTD, "Copyright © World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved."
Attributes

Internationalization attributes: dir lang


W3 3.2n
4.0d
version
Identifies the HTML DTD version used in the document. Because the !DOCTYPE declaration includes version information about the used DTD, this attribute is deprecated.
Examples

Source
A small, yet complete HTML document is :
<HTML>
<HEAD>
<TITLE>Title</TITLE>
</HEAD>
<BODY>
Text body
</BODY></HTML>
 
Result
A small, yet complete HTML document is : <HTML> <HEAD> <TITLE>Title</TITLE> </HEAD> <BODY> Text body </BODY></HTML>


Statistics