To change the text color of all <h1> headers to red, which CSS code would you use?
<h1>
h1 { color: #FF0000; }
.h1 { color: red; }
#h1 { color: rgb(255, 0, 0); }
h1 { color: #000000; }