<HTML>
The HTML element is the top level element which defines the
entire web page. All HTML tags on your page should be enclosed
between the starting and ending HTML tag. Many browsers will
still render the page correctly without these tags, but you
should consider them required elements.
Attributes
Attribute |
Description |
VERSION |
[DEPRECATED] Contains the document type definition to be used. This has been superceded by the DOCTYPE declaration |
|
Example
<HTML>
<HEAD>
<TITLE>Sports Wrap - Hockey</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Compatibility
HTML 4.01
|