To make the text color of a <h4> header black, what CSS code would you use?
<h4>
h4 { color: black; }
h4 { color: #FFFFFF; }
h4 { color: blue; }
h4 { color: rgb(0, 255, 0); }