What are the names of the individual pieces of a CSS rule?
selector and declaration block
In CSS, how do you select elements by their class attribute?
you use the dot and then whatever the name of the class; example: .title will select any element with class “title.”
In CSS, how do you select elements by their type?
you would just input the name of the element
In CSS, how do you select an element by its id attribute?
you would use # and then the value/name of the id attribute; example: #about will select all elements with ID “about”