Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

8. 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. It defines the document type and helps browsers to correctly render the page. The </head> tag closes the head section, <body> starts the body content, and </html> closes the entire HTML document.

Answer:

C. <!Doctypehtml>