Learn HTML Forms by Building a Registration Form - Step 5

Issue:
This step should be very simple, you need to add the link element with attributes rel="stylesheet" and href="styles.css" but I am not able to get the test to pass and the hint isn’t helping. I have looked at other solutions for this step and even just copying them exactly isn’t working.

Code

<!DOCTYPE html>
<html lang="en">

<!-- User Editable Region -->

<head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css">
</head>

<!-- User Editable Region -->

  <body>
  </body>
</html>

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0

Challenge: Learn HTML Forms by Building a Registration Form - Step 5

Link to the challenge:

This line is correct. I would make sure you are not using any browser extensions while running the tests.

Thank you, it was an extension breaking it.
I had already tried disabling some of them but it was (of course) the last one I turned off that was causing the problem : )

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