Was an example of how your style should be structured. You should not actually use any of this in your code. Read the directions carefully, and match what they say with the example
" Center your h1element by setting its text-alignproperty to the valuecenter ."
Element and property should not be used. That text does not go in the style, and needs to be deleted. Lets looks at the directions again
" Center your h1element by setting its text-alignproperty to the valuecenter ."
You have figured out the h1 is the element which is good, but you do not use <> in css. If you want to give an element a style all you have to do is use the element without anything around it. So for example if I wanted to style a p element it would look like this
p {
}
See how I didnt include the <>?
The next step would be “setting its text-alignproperty” Like I said you should not be using the word property anywhere in here. Given the example:
element {
property: value;
}
Looking at that example, where do you think text-align goes? After you solve that, then there is only one place where center can go