What is wrong here? HTML Cat Photo App step 64

only freeCodeCamp.org should be link text

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

1 Like

Thanks for the tip on how to submit a post. I tried adding only freeCodeCamp.org as a link test but it doesn’t work…

please show your code

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

1 Like
<p><a href="freeCodeCamp.org"No Copyright - freeCodeCamp.org></a></p>

the text of a link has to go between the opening tag and the closing tag, look at your preview, I bet you don’t see the copyright anymore

remove the text from inside a tag, and put it correctly between tags

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

Copyright is back, but it won’t pass the test, what am i missing?

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. Is what it says.

you have this instead, the two are not the same

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

Copied from the exercise as well

now you still have the wrong text, only freeCodeCamp.org sghould be inside the anchor element

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

Done. I don’t know how, but it helped. Thanks for the patience!

Look carefully, now you have No Copyright outside the anchor element, and freeCodeCamp.org inside the anchor element! That’s fantastic, you managed!

1 Like

Yeah it works as a link now i get it :smiley:

1 Like

I noticed you wrote at href=“h//www.free"C"odeCamp” , the letter C is on capitalize , its wrong in your code , correct way is “freecodeCamp”
be careful with case sensitive

1 Like

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