nerdexam
CIW

1D0-610 · Question #35

Which of the following HTML elements is a text-level element?

The correct answer is A. <br>. <br> is correct because it is a text-level (inline) element - it inserts a line break within the flow of text without creating a new block. Text-level elements exist inside block-level containers and don't disrupt the document's block structure. Why the distractors are wrong: B.

CIW Site Development Associate

Question

Which of the following HTML elements is a text-level element?

Options

  • A<br>
  • B<hi>
  • C<list>
  • D<blockquote>

How the community answered

(26 responses)
  • A
    88% (23)
  • C
    8% (2)
  • D
    4% (1)

Explanation

<br> is correct because it is a text-level (inline) element - it inserts a line break within the flow of text without creating a new block. Text-level elements exist inside block-level containers and don't disrupt the document's block structure.

Why the distractors are wrong:

  • B. <hi> - Not a valid HTML element at all; it doesn't exist in the HTML specification.
  • C. <list> - Also not a valid HTML element; the correct list elements are <ul>, <ol>, and <li>, all of which are block-level.
  • D. <blockquote> - A valid HTML element, but as its name suggests, it is a block-level element used to represent extended quotations that form their own paragraph-like block.

Memory tip: Text-level elements live inside text - think of <br> as a character you type mid-sentence to drop to the next line. If the element's name contains "block" or represents a standalone section (like a quote, list, or heading), it's almost certainly block-level, not text-level.

Topics

#HTML elements#Inline elements#HTML structure#Element classification

Community Discussion

No community discussion yet for this question.

Full 1D0-610 Practice