Problem with CSS Exercise

I feel like I did what the exercise asked for but the header is not appearing. If there’s a problem with my work here I don’t see it. Can someone please point me in the right direction?

Only CSS selectors and classes should be in the style element. You put an h2 element in it. Look at the example on the left side of your screenshot. That is an h2 selector defining text color of red for h2 elements. Your code has an h2 element in the style section, but not an h2 selector. There is a big difference.

HTML elements which are not style elements belong below the <style> and </style> tags and not inside them. Below is correct syntax:

<style>

</style>
<h2>My H2 Element</h2>

An h2 CSS selector would go between the style tags like:

<style>
  h2 {
    color: blue;
  }
</style>

Thanks a lot Randell. Let me try that real quick.

@camperextraordinaire I’m not getting it. I tried by your example and it didn’t work. Is there a support team I should talk to?

I went home, thought about it, reread the instructions and saw what I was doing wrong. You had it right to begin with.

Thanks for your help