Multiple choice

What is true about HTML tags?

  1. HTML pairs normally come in pairs.

  2. HTML tags are case sensitive.

  3. HTML tags are not used to mark up HTML elements.

  4. None of these

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

HTML tags typically come in pairs - an opening tag and a closing tag. For example,

...

,
...
. While some tags are empty (like
), the standard structure is paired tags. HTML is also case-insensitive, meaning

and

are treated the same.