Multiple choice technology What is the correct HTML for adding a background color? <background>yellow</background> <body background="yellow"> <body style="background-color:yellow"> <body style="background-color='yellow'"> Reveal answer Fill a bubble to check yourself C Correct answer Explanation The correct way to add background color in modern HTML is using CSS with the style attribute: . The tag doesn't exist, and the background attribute is deprecated. Double quotes are standard in HTML attributes.