Challenger App

No.1 PSC Learning App

1M+ Downloads
Identify the HTML section that contains the content displayed in the browser window.

A<head>

B<title>

C<meta>

D<body>

Answer:

D. <body>

Read Explanation:

HTML Document Structure

  • The <body> element is the container for all the visible content in an HTML document, such as text, images, hyperlinks, tables, and lists.
  • It resides within the <html> tag, typically following the <head> section.
  • The <head> section is reserved for metadata, title tags, scripts, and links to stylesheets, which are not displayed directly in the main browser viewport.
  • Only one <body> element is permitted per document, serving as the primary anchor for the DOM (Document Object Model) representation of content.
  • In standard web development, any content intended for user consumption must be placed between the opening <body> and closing </body> tags.

Related Questions:

The shell is also known as :
A markup language used for creating web pages and web applications
Which of the following Object Oriented Programming concept provides usability ?
C++ ലാംഗ്വേജിൽ കീവേഡ് അല്ലാത്തത് ?
How do you define a function in JavaScript ?