Learn HTML by Building a Cat Photo App - Step 64

Greetings
I’m having a problem with this line of code I’ve rewritten it multiple times trying figure what the error is and keep getting the hint -
your anchor (a) element should have an href attribute with the value https://www.freecodecamp.org. you may have omitted the attribute/value, or have a typo.
Help understand where I’m getting wrong

<footer>
  <p>No Copyright - <a href="https://freeCodeCamp.org"></a>
  </p>
</footer>
```

Your mobile information:

iPhone - iOS17.5.1

Challenge: Learn HTML by Building a Cat Photo App - Step 64

Link to the challenge:

1 Like

Please click reset. Then notice the code is as below:

<p>No Copyright - freeCodeCamp.org</p>

The paragraph currently has three words. They want you to nest the third word in an anchor element to make the third word clickable in the preview pane.

Use the url given in the step to setup the correct href.

1 Like

hi there! welcome to the FCC.Forum. as i see your code it is correct but you forget to link freeCodeCamp.org inside the anchor(a).look at this example:-

<p>if you need help  click ...<a href="https://freeCodeCamp.org">forum.freecodecamp.org</a></p>

therefore edit the text inside the paragraph element by No Copyright - freecodeCodeCamp.org

1 Like

Hey this is what I did

 <p>No Copyright-<a href="https://freeCodeCamp.org">freeCodeCamp.org</a></p>

And can you kindly show me where the error is

that’s an excellent try.
Just one issue. The spacing.

When you changed the 3rd word into a link, you should not have modified the spacing between the characters in the original paragraph.
<p>No Copyright - freeCodeCamp.org</p>

check your code, are all the spaces present?