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

My code hint tells me that my link element should have a rel attribute with “stylesheet”. I was able to add this and my code doesn’t check

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Rothko Painting</title>
<link rel ="stylesheet"  href ="styles.css">
  </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/108.0.0.0 Safari/537.36

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

Link to the challenge:

Don’t make blank spaces between the attribute’s name and the equal sign.

1 Like

Thanks, It has checked successfully

1 Like