Element selectors
Select every element of the same type.
Writing the HTML tag name as a selector applies the rule to every element of that type. For example, `p { color: red; }` targets all paragraphs.
Element selectors are useful for broad defaults, but they are not very specific. If you only want to style some of those elements, classes are usually the better tool.