What CSS code would you use to change the color of all <h1> headers to blue?
<h1>
h1 { heading-color: blue; }
h1 { color: blue; }
h1 { text-color: blue; }
h1 { font-color: blue; }