Find the mistake in this CSS code which intends to make all <h1> elements blue:
<h1>
h1 { font-color: blue; }
The font-color property should be color.
font-color
color
h1 should be replaced with .h1.
h1
.h1
CSS cannot change the color of header elements.
The color blue should be specified in hexadecimal.