16. where should the contents of your website be written? there is only 1 correct answer.\nbetween the…

16. where should the contents of your website be written? there is only 1 correct answer.\nbetween the <body> and </body> tags\nbetween the <head> and </head> tags\nat the very top before <doctypehtml>

16. where should the contents of your website be written? there is only 1 correct answer.\nbetween the <body> and </body> tags\nbetween the <head> and </head> tags\nat the very top before <doctypehtml>

Answer

Brief Explanations:

In HTML, the visible content of a website such as text, images, etc. is placed between the <body> and </body> tags. The <head> section contains metadata and information about the page that is not directly visible to the user like page - title, links to stylesheets, etc. And nothing should be placed before the <!DOCTYPE html> declaration as it defines the document type.

Answer:

A. Between the <body> and </body> tags