HTML < html > Tag - Learn About Website | DaddyFile

0

HTML <html> Tag

Example

A simple HTML5 document:

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

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

</html>

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).

Differences Between HTML 4.01 and HTML5

HTML5 has added a new attribute: manifest.

Differences Between HTML and XHTML

The xmlns attribute is required in XHTML, but is invalid in HTML.
However, the HTML validator at http://w3.org does not complain when the xmlns attribute is missing in an XHTML document. This is because the namespace "xmlns=http://www.w3.org/1999/xhtml" is default, and will be added to the <html> tag even if you do not include it.

Post a Comment

 
Top