CSS element type selector
Element type selectors target elements by their specific type. To use this selector, type the element's name without any extra CSS syntax. For example, to apply a style with black text aligned to the left to all <h1>
headings of the page:
h1 {
text-align: left;
color: black;
}
This style will only apply to <h1>
elements and won't affect other headings and body text.