Have I lost my mind, I can't seem to be able to figure out whats wrong

Tell us what’s happening:
Describe your issue in detail here
hey can anyone tell what is wrong with my code it keeps coming back asking for a self closing link tag

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

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

Challenge: Step 4

Link to the challenge:

Hello,
Welcome to The Forums :wave:


There are two mistakes in your code :

  • The href of the link element is incorrect.
  • You have to add a backslash(/) before the > of the link element.

The backslash(/) is not necessary while using a link element but the tests are strict and needs a backslash(/).

Sometimes self closing tags just like this:

<link.../>
<img.../>

this slash is not requred usually, but for this step it might be needed

thanks that was a big help

1 Like

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