What code would change the text color of an <h3> header to black using hexadecimal?
<h3>
h3 { color: #000000; }
h3 { color: black; }
h3 { color: rgb(0, 255, 0); }
h3 { color: #FFFFFF; }