CBSE Class 10 Computer Applications Question 134 of 176

HTML I — Basic HTML Elements — Question 7

Back to all questions
7
Question

Question 7

What is the basic structure of HTML File ?

Answer

Every HTML document should follow the general form given below:

<HTML>
    <HEAD>
        <TITLE> Title of page is written here </TITLE>
    </HEAD>
    <BODY>
        The HTML tags that define the page are written here
    </BODY>
</HTML>

The <HEAD>...</HEAD> tags make the header of the document and the <BODY>...</BODY> tags make the body of the HTML document.