previous | start | next


HTML

<HTML>
</HTML>

Denotes the file as an HTML document. The begin-tag typically appears after the !DOCTYPE element. The end-tag comes after all HTML elements in the document.

This element has no attributes.

Example

<HTML>
<HEAD>
 <TITLE>This is the title</TITLE>
 </HEAD>
<BODY> 
<P>This is an HTML document.
 </BODY> 
</HTML> 



previous | start | next