Link element is self closing but keep getting the same error

Tell us what’s happening:
My link element is self closing but I keep getting the same error and it won’t let me move onto the next step. Is there an error in this code?

  **Your code so far**
<!DOCTYPE html>
<html>
<head>
  <title>Registration Form</title>
  <link rel="stylesheet" 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/103.0.0.0 Safari/537.36

Challenge: Step 4

Link to the challenge:

Hello! Try this <link…/>. Requirements for this step is somewhat tricky.

We add / to to the end of the Self Closing Element

For example

Before:
<br>
After:
<br />

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