Computer Applications

The document structure elements of HTML page is/are:

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

HTML Intro

2 Likes

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>

Answered By

1 Like


Related Questions