Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <html> Tag


Example

A simple HTML document:

<!DOCTYPE HTML>
<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>
Try it Yourself »

Definition and Usage

The <html> tag tells the browser that this is an HTML document.

The <html> tag represents the root of an HTML document.

The <html> tag is the container for all other HTML elements (except for the <!DOCTYPE> tag).


Browser Support

Element
<html> Yes Yes Yes Yes Yes


Attributes

Attribute Value Description
xmlns https://www.w3.org/1999/xhtml Specifies the XML namespace attribute (If you need your content to conform to XHTML)

Global Attributes

The <html> tag also supports the Global Attributes in HTML.


Related Pages

HTML tutorial: HTML Introduction

HTML DOM reference: HTML Object


Default CSS Settings

Most browsers will display the <html> element with the following default values:

html {
  display: block;
}

html:focus {
  outline: none;
}