Multiple choice css

How do you make the text bold?

  1. font:b

  2. style:bold

  3. font-weight:bold

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

font-weight:bold increases text thickness. Option A uses invalid shorthand syntax, and option B uses a non-existent property. The font-weight property accepts values like bold, normal, or numeric values (100-900).