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.
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)- A88% (23)
- C8% (2)
- D4% (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
Community Discussion
No community discussion yet for this question.