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