Running Test is the Message

Tell us what’s happening:

When I put in the code the only message I’m getting back is “running test.”

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36.

Challenge: Adjust the Tone of a Color

Link to the challenge:

Hey @mct8712,
Your code works fine for me.


It seems like the problem might be your browser’s extensions that have access to the FCC site.
Try disabling some extensions. If the problem still persists, you can try to use a different browser, but I don’t think that is necessary, because I see that you are using the latest Chrome, and Chrome is the official supported browser for FCC.