Multiple choice technology web technology

Find the correct format.

  1. <Narnia category=fantasy>

  2. <Narnia category="fantasy">

  3. <Narnia category='fantasy'>

  4. <Narnia category='seven "fantasy" novels'>

Reveal answer Fill a bubble to check yourself
B,C,D Correct answer
Explanation

XML attribute values must be quoted. The unquoted format in A is invalid. Both double quotes (B) and single quotes (C, D) are valid. D demonstrates single quotes wrapping a value containing double quotes, which is legal.