The HTML Tag

ken's picture

Opening tag : <HTML>
Closing tag: </HTML>

Purpose:
The HTML tags indicate to the browser that what is inside the tags is 'HTML'. Your HTML documents should begin with the opening HTML tag, and end with the Closing tag.

Attributes:
dir=direction
- Useful for languages that should be read from right to left.

lang=language
- Specifies the language of the html document.

Example:

<HTML>
<BODY>Simple Webpage
</BODY>
</HTML>

Related Tags:

<Head></Head> - Head Tag.
<Body></Body> - Body Tag.

Back to:
Alphabetical Guide
Guide By Type