Learn Intermediate CSS by Building a Cat Painting - Step 3

Tell us what’s happening:
The code I have written is . This looks correct based on the other challenges that have been completed. However, it is not passing on this challenge and is providing me with the following hint " Your link element should have a rel attribute set to stylesheet ."

Is my code wrong? If not, how does this bug get fixed?

Your code so far

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

<!-- User Editable Region -->

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


<!-- User Editable Region -->

</head>
<body></body>
</html>

Your browser information:

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

Challenge: Learn Intermediate CSS by Building a Cat Painting - Step 3

Link to the challenge:

This is a bug in the test. If you put the rel attribute before the href attribute in the link tag then it will pass.

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