Override Class Declarations with Inline Styles/ Help Me

Hi. Code Problem, possible Bug.

<h1 id="orange-text" class="pink-text blue-text"

style ="color: white">Hello World!

Code does not work.
Can’t move forward to the next Lesson.

Can you explain? Add a link to the challenge please.

the challenge link…

https://www.freecodecamp.org/challenges/override-class-declarations-with-inline-styles

seems to work ok on codepen… mebbe it’s just a typo for you?
try resetting the code?

<style>
  body {
    background-color: black;
    font-family: Monospace;
    color: green;
  }
  #orange-text {
    color: orange;
  }
  .pink-text {
    color: pink;
  }
  .blue-text {
    color: blue;
  }
</style>
<h1 id="orange-text" 
    class="pink-text blue-text"
    style ="color: white">Hello World!</h1>