Question

Only one of the rules below is the correct way of specifying a colour for all elements in the classAn attribute assigning an element to a named class. notes. Select the colour used in the correct rule.

#notes {
    color: purple;
}

.notes {
    color: blue;
}

notes {
    color: red;
}

"notes" {
    color: green;
}