nerdexam
CIW

1D0-61B · Question #37

Marion is formatting a simple Web page. She has been asked to create headings before the first and third paragraphs. To accomplish this most efficiently, which type of HTML elements should Marion use?

The correct answer is D. Paragraph-level elements. Heading tags (<h1> through <h6>) are paragraph-level (block-level) elements - they occupy their own line, create visual breaks, and define document structure, making them the natural choice for adding headings before specific paragraphs. Why the distractors are wrong: A…

HTML5 Coding

Question

Marion is formatting a simple Web page. She has been asked to create headings before the first and third paragraphs. To accomplish this most efficiently, which type of HTML elements should Marion use?

Options

  • AText-level elements
  • BBlock quote elements
  • CFixed-width font elements
  • DParagraph-level elements

How the community answered

(37 responses)
  • A
    5% (2)
  • C
    3% (1)
  • D
    92% (34)

Explanation

Heading tags (<h1> through <h6>) are paragraph-level (block-level) elements - they occupy their own line, create visual breaks, and define document structure, making them the natural choice for adding headings before specific paragraphs.

Why the distractors are wrong:

  • A (Text-level): Text-level elements are inline (e.g., <span>, <strong>) - they flow within a line of text and cannot stand alone as headings.
  • B (Block quote): <blockquote> is a block-level element, but it's semantically meant for quoted content, not headings.
  • C (Fixed-width font): Elements like <code> or <pre> render text in monospace and relate to code/preformatted text - completely unrelated to heading structure.

Memory tip: Think "P is for Page structure" - Paragraph-level elements (headings, paragraphs, divs) build the skeleton of a page, while text-level elements just style the flesh inside it. Any time a question asks about structural content like headings, think paragraph-level.

Topics

#HTML headings#block-level elements#semantic markup#document structure

Community Discussion

No community discussion yet for this question.

Full 1D0-61B Practice