Learn the CSS Box Model by Building a Rothko Painting - Step 7

Tell us what’s happening:

I can’t figure out what the problem is here. It says my 'link ’ element should have the ‘rel’ attribute with the value of ‘stylesheet’. But I do have it in here.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Rothko Painting</title>

<!-- User Editable Region -->

<link rel ="stylesheet" href = "styles.css">

<!-- User Editable Region -->

  </head>
  <body>
    <div class="canvas">
    </div>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36

Challenge Information:

Learn the CSS Box Model by Building a Rothko Painting - Step 7

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/learn-the-css-box-model-by-building-a-rothko-painting/60a3e3396c7b40068ad69970.md at main · freeCodeCamp/freeCodeCamp · GitHub

You do not need spaces when writing your attributes.

Thanks, man, I thought it wouldn’t look clean if there were no spaces, and still would work like that.