The element Selector:
The element selector selects elements based on the element name.
You can select all <b> elements on a page like this: (all <b> elements will be red text color, with a text font size)
Example:
b {
color: red;
font-size: 24px;
}