QUESTION IMAGE
Question
- where should the contents of your website be written? there is only 1 correct answer.
between the <body> and </body> tags
between the <head> and </head> tags
at the very top before <doctypehtml>
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.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
A. Between the <body> and </body> tags