You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
Your style element should not have other HTML elements nested inside it.
First, move the meta and title elements above the opening style tag, so that you have an empty style element.
Then, inside the style element, you can write CSS code, using the example syntax given in the challenge description:
element {
property: value;
}
In this case the element is h1, property is text-align and value is center.