Can anyone tell me what's wrong with this link element?

  **Your code so far**
<!DOCTYPE html>
<html>
<head>

  <title>Registration Form</title>
 <link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>

Challenge: Step 4

Link to the challenge:

Give it a rel attribute value of stylesheet and an href attribute value of styles.css.

like this ?
link rel=“stylesheet” href=“styles.css”

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