CBSE Class 10 Computer Applications Question 103 of 176

HTML I — Basic HTML Elements — Question 2

Back to all questions
2
Question

Question 2(i)

The document structure elements of HTML page is/are:

  1. HTML
  2. BODY
  3. HEAD
  4. All the above
Answer

All the above

Reason — The document structure of an HTML document is as follows:

<html>
<head>
<title> ... </title> 
</head>
<body>
...the body of the document...
</body>
</html>