How would you make all <h2> headers have black text color?
<h2>
h2 { color: white; }
#h2 { color: rgb(0, 0, 0); }
.h2 { color: #000000; }
h2 { color: black; }