Computer Applications

Define the tag, <HTML>.

HTML Intro

5 Likes

Answer

The <HTML> tag it the root element of the html document. It identifies the document as an HTML document. An HTML document begins with <HTML> and ends with </HTML>.

<HTML>
    ....HTML document lines here
</HTML>

Answered By

3 Likes


Related Questions