Impossible to proceed with on STEP 4 in Learn HTML Forms by Building a Registration Form

Hello,
I’m stuck in my progress. I kept receiving an error but I can’t seem to find what’s wrong.
It must be a bug, cause the same structure been working since the previous

  **Your code so far**
<!DOCTYPE html>
<html>
  <head>
      <title>Registration Form</title>
    <link rel="stylesheet" type="text/css" href="styles.css">
  </head>
  <body>
  </body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.99 Safari/537.36

Challenge: Step 4

Link to the challenge:

I’m having the same issue and my code looks identical. I can’t figure out what’s wrong and the error code is entirely irrelevant.


<head>
    <title>Registration Form</title>
       <link rel="stylesheet" type="text/css" href="styles.css">
  </head>
  <body>
  </body>

You are missing a / at the end of the link element, as it is a self-closing element :

<link />
1 Like

Ok thanks so much it worked

1 Like

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