Can someone please tell me what to do

Tell us what’s happening:

Your code so far


<style>
  header {
    background-color: hsl(180, 90%, 35%);
    color: #FFFFFF;
  }
  
  nav {backgroun-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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/73.0.3683.86 Chrome/73.0.3683.86 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color

Add the color to the nav element for the hsl property

@tgal What is the problem you are having?

Read the information on the left, it tells you what to do towards the end, here’s your answer.

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

@ritambah, since this is a lesson we try and guide the OP to help them find a solution rather than post the actual answers. Thank you for understanding.

@tgal, you have a typo in your solution.

1 Like

Oops @Roma. :joy: Yea, will do next time

2 Likes

@Roma I am guilty of that too, shame on me. :sweat_smile: It is better to help people help themeselves.

1 Like