Multiple choice general knowledge

If you want your ordered list to use capital letters and start with the letter D, which attributes would you use?

  1. type="a" start="D"

  2. type="A" start="D"

  3. type="A" start="4"

  4. type="letter" start="d"

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

To create an ordered list with capital letters starting from D, use type="A" and start="4". The type attribute sets the letter style (A for uppercase), and start specifies the numeric position where D is the 4th letter (A=1, B=2, C=3, D=4). Option B incorrectly uses "D" instead of "4" for the start value.