To style all elements of a specific type in CSS, you use the element selector directly. Therefore, h1 targets all <h1> elements. The other options use class selectors (.all or .h1), which would only target elements with those specific class names rather than all <h1> tags.