Help adjusting hsl on a challenge - is this a glitch?

Tell us what’s happening:

This is my first post on here so hello :wave:t2: I’m Vanessa.

If anyone could help on this challenge please, I’d be very grateful. Adjusting the hsl of the nav bar and I feel like what I have done is correct but it’s not letting me go through to the next challenge? I watched the help video and it looks the same as mine, but maybe I’m missing something?

Thanks in advance for any help !

Your code so far


<style>
header {
  background-color: hsl(180, 90%, 35%);
  color: #FFFFFF;
}

nav {
  background-color: hsl (180, 80%, 25%);

}

h1 {
  text-indent: 10px;
  padding-top: 10px;
}

nav ul {
  margin: 0px;
  padding: 5px 0px 5px 30px;
}

nav li {
  display: inline;
  margin-right: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}
</style>

<header>
<h1>Cooking with FCC!</h1>
<nav>
  <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">Classes</a></li>
    <li><a href="#">Contact</a></li>
  </ul>
</nav>
</header>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36.

Challenge: Adjust the Tone of a Color

Link to the challenge:

You have a space between “hsl” and “(”.

1 Like

I thought I had tried it without the space but evidently not. Thanks so much!

I’m glad I could help. Happy coding!