Learn HTML Forms by Building a Registration Form - Step 4

Tell us what’s happening:
Every time I’m on a step that tells to include a link element, even if I copy the code from the step after into the previous step I was stuck on it doesn’t work. Something with my browser / browser extensions must be messing this up, what do you guys think the problem is?

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

Challenge: Learn HTML Forms by Building a Registration Form - Step 4

Link to the challenge:

It’s the text in your title that is stopping you from passing the challenge, take out the space before ‘Registration’ and after ‘Form’.

I tried to change that, it still gives the same response that I need a self closing link element. Thank you so much for the response though!

No worries, I’m happy to help! :smiley:
That’s pretty strange though. I went on to the challenge, put your code in, tried to check it and as expected it didn’t pass. All I did after was take out the space before and after the text and it passed.
This worked

<title>Registration Form</title>

From what I can see, it’s definitely not the link. You’ve completed that part perfectly well.

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