Multiple choice technology web technology What is the correct HTML for adding a background color? <body background="yellow"> <body style="background-color:yellow"> <background>yellow</background> <bgcolor="yellow"> Reveal answer Fill a bubble to check yourself B Correct answer Explanation The inline style attribute using CSS syntax (background-color) is the modern approach to adding background colors. Option A uses an obsolete attribute that's deprecated, and options C and D use non-existent HTML elements or invalid syntax.