In this step, it asks us to use the style element in html and, using the following as an example, style the h1.
element {
property: value;
}
It is only necessary to enter the above code, with the h1 element and the property for the h1 and its value, nested between the provided style element tags.
Note the syntax for CSS rules, which is given in the challenge description:
element {
property: value;
}
You should not be adding anything inside the style tags. The property (i.e. text-align), which you have put inside the opening style tag, should be instead inside the CSS rule, in place of the word property.