nerdexam
CIW

1D0-61B · Question #17

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

The correct answer is A. <br>. <br> is a text-level (inline) element because it represents a line break within a flow of text, existing inside block containers rather than creating its own block structure. <h1> is a block-level element that creates a standalone heading occupying the full width of its…

HTML5 Coding

Question

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

Options

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

How the community answered

(22 responses)
  • A
    95% (21)
  • B
    5% (1)

Explanation

<br> is a text-level (inline) element because it represents a line break within a flow of text, existing inside block containers rather than creating its own block structure. <h1> is a block-level element that creates a standalone heading occupying the full width of its container. <list> is not a valid HTML element at all - the correct list elements are <ul>, <ol>, and <li>. <blockquote> is also block-level, as its name suggests - "block" is literally in the tag name.

Memory tip: Text-level elements live inside text flow - think of <br>, <span>, <a>, <strong>. If the element's purpose is to structure or contain large sections of content, it's likely block-level. The word "block" in an element's name (<blockquote>) is a dead giveaway.

Topics

#inline elements#HTML element classification#text-level elements#HTML structure

Community Discussion

No community discussion yet for this question.

Full 1D0-61B Practice