Bug or My mistake

Tell us what’s happening:
Describe your issue in detail here.
it tells me that link is selfclosing tag and sees some kind of mistake there so is it a bug or
i did sth wrong

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

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

Challenge: Step 4

Link to the challenge:

if the <link> element should be self-closing, you have to add a / in front of the last >.
for example, a self-closing div element would look like this:

<div/>
1 Like

you should add / before > ,to like <link ... />

1 Like

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