Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

9. what goes on the top of every page when writing html? </head> <body>…

Question

  1. what goes on the top of every page when writing html? </head> <body> <!doctypehtml> </html> other

Explanation:

Brief Explanations

In HTML, the <!DOCTYPE html> declaration is placed at the very top of an HTML page to define the document type. It tells the web - browser which version of HTML the page is using. The </head> tag closes the head section, <body> starts the body content section, and </html> closes the entire HTML document.

Answer:

C. <!Doctypehtml>