Bug in chapter 3 step 4

Tell us what’s happening:
Describe your issue in detail here.
so i think i found another bug, the site ask me to write a link to css, i wrote and it’s says that the link is self closing, but in my code it is self closing… don’t know how to move on

  **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/102.0.0.0 Safari/537.36

Challenge: Step 4

Link to the challenge:

find the solution

<link rel="stylesheet" type="text/css" href="styles.css" />

Not a bug. It ask for self closing element. Check your answer very well.

1 Like

yeah i saw the problem, i forgot to put the / symbol before the >

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