You are here : htmlHTML 5html

<html> - HTML 5

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


Syntax

    <!DOCTYPE HTML>    <html>	<head>	<title>Title of the document</title>	</head>
	<body>	The content of the document......	</body>
	</html>


Example

    <!DOCTYPE HTML>    <html>	<head>	<title>Title of the document</title>	</head>
	<body>	The content of the document......	</body>
	</html>


Output / Return Value


Limitations


Alternatives / See Also


Reference