CBSE Class 10 Computer Applications Question 131 of 176

HTML I — Basic HTML Elements — Question 4

Back to all questions
4
Question

Question 4

Define the tag, <HTML>.

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>