Learn Responsive Web Design by Building a Piano - Step 8

Did anyone faced this issue before. my code is correct but it keeps asking me to use one self-closing link element.

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>

<!-- User Editable Region -->

    <meta charset="UTF-8" />
    <title>Piano</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="styles.css" />

<!-- User Editable Region -->

  </head>
  <body>
    <div id="piano">
      <div class="keys">
        <div class="key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>
        <div class="key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>

        <div class="key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>
        <div class="key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>

        <div class="key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>
        <div class="key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>
        <div class="key black--key"></div>
      </div>
    </div>
  </body>
</html>
/* file: styles.css */

Challenge: Learn Responsive Web Design by Building a Piano - Step 8

Link to the challenge:

It passed the test for me, you should try it-
i) refreshing the page.
ii) submitting the answer on any other browser.

1 Like

Welcome to freecodecamp forum, manofalo9!
In addition to AmanKumar977’s suggestions, I would like to suggest to check and see if there may be an extension causing the issue that can be disabled. I have come across this issue sometimes. Once I have disabled my extension, it went through.
Happy coding! :slight_smile:

I faced the issue as well. so I skipped this step 8.

I suggest you try a different browser, if it is not an extension causing the issue.

As well, you may wish to post using the Get Help button, to post your code and request help.

People in the forum like to help each other. We do need to see the code and know what the issue you are having with it is though.

Happy coding!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.