Which of the following selectors selects the specified elements of type E with a particular class value?
A
E.class
B
E ~ F
C
*
D
E, F, G
Correct Answer: E.class
Example: h1.note {text-decoration: underline;}/* underlines all h1 tags with class='note' */