Building a registration form Andy

Tell us what’s happening:
Describe your issue in detail here.
The text ask me to Add a title element to the head and give your project a title of Registration Form . Also, nest a self-closing link element in the head element. Give it a rel attribute value of stylesheet a type attribute value of text/css and an href attribute value of styles.css
However when I enter my code the hint just says
“Your link element should be a self-closing element” where my code is

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

with no closing link element.

  **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 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36

Challenge: Step 4

Link to the challenge:

Hi @andersonfeng17 !

There is a known issue with this test that is currently being looked at.

To pass the test, you need to add a / at the of the link tag here

<link/>

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