I do not understand the problem

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
<!DOCTYPE html>
<html>
<head>
  <title>Registration Form</title>
<link rel="stylesheet" type="text/css" href="styles.ccs"></link>
  
</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/101.0.4951.64 Safari/537.36

Challenge: Step 4

Link to the challenge:

Can you please give more information what is the issues, but at leasti I can spot one problem.

In your href=“styles.ccs” change ccs to css

HI @Deraizy !

Aside from the issue mentioned earlier here

you have two other issues.

No.1:
Link tags are self closing which means they do not have end tags.
Delete this

No.2:
This is an issue with the test and is currently being addressed.
The test expects you to use a / at the end of the link tag.

<link/>

Once you fix those things, then it will pass.

If you want to learn more about link tags, then read up on the documentation.

Hope that helps!

In the future, please make sure to fill out this section so we know how to best assist you.
Learning how to describe your issue is an important part of learning how to code and will come in handy later on when the challenges become more difficult.

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