To style all elements of a type, use the element name directly as the selector without modifiers. 'h1 {background-color:#FFFFFF}' correctly targets all h1 elements. Options A and C incorrectly add '.all' which is not valid CSS syntax for targeting all elements of a type, and Option D changes the wrong property (color instead of background-color).