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:
- HTML
- BODY
- HEAD
- All the above
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>