This rule says that all elements of class warning should have color red.
- To select all elements of a class, use a period followed by
the class name. (example: .warning, which selects all
elements of class warning)
- To select elements by class and name, use the element name
followed by and period and the class name. (example: H1.warning, which
selects only H1 elements of class warning)