Multiple choice technology web technology What is the correct CSS syntax for making all the elements bold? <p style="text-size:bold"> p {font-weight:bold} <p style="font-size:bold"> p {text-size:bold} Reveal answer Fill a bubble to check yourself B Correct answer Explanation The font-weight property controls text boldness in CSS. Option B uses correct CSS syntax: 'p' selector with font-weight:bold property declaration. Options A and C incorrectly mix inline style syntax with wrong property names.