To change the text color of all <h1> and <p> elements to white, which CSS code would you use?
<h1>
<p>
.h1 .p { color: white; }
h1 p { color: white; }
h1, p { color: white; }
#h1 #p { color: white; }