Multiple choice

Paired tags

  1. are those which have a starting and an ending tag

  2. only the starting tags

  3. only the ending tags

  4. none of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Paired tags in HTML are those that require both a starting (opening) and an ending (closing) tag. Examples include

for paragraphs,

for headings, and
for divisions. The opening tag may contain attributes, while the closing tag only contains the tag name with a forward slash. This structure ensures proper nesting and document structure.