Learn HTML by Building a Cat Photo App - Step 64

Hey, I can’t see what’s wrong with this one. I checked on other websites and it’s apparently right:

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

Please post a link to the Step.

It looks like you didn’t put the right thing in the anchor element.

But I copied the exact link the page tells me to :upside_down_face:

But you didn’t. :upside_down_face: If you link the Step, then I can more easily show you how you didn’t. :upside_down_face:

I corrected my first post and I added it. Here it is, it’s the 64: https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-by-building-a-cat-photo-app/step-64

1 Like

Make the text freeCodeCamp.org into a link by enclosing it in an anchor (a) element. The href attribute should be set to https://www.freecodecamp.org.

You turned the text

into a link.

1 Like

h1 {
text-align: center;
}

.marker {
width: 200px;
height: 25px;
background-color: red;
margin: 10px auto;
}

1 Like

If you have a question about a specific challenge as it relates to your written code for that challenge, and you’ve tried to solve it at least 3 times so far and still need some help, just click the Ask for Help button located on the challenge (it looks like a question mark).
This 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.

It is already closeted:

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

The href attribute is already that one and it also has the text. But it stills tells me it’s wrong.

Yes, because the link text is wrong.

This is not

The opening anchor tag <a> and all that you’ve put inside, put it before the text freecodecamp
I hope this helps.
Thank you.

I’ve tried that too, but the error mesage that appears when I do is that the link text is No Copyright - freeCodeCamp.org

What is your exact code when you try to do that? The test needs the spacing to be exact.

Hi @milenasol ,
You have to convert ONLY freeCodeCamp.org part to a link.

<p> parargh <a...> link </a> paragrh </p>

So place the anchor tags between that part. Here you have converted the entire text into a link.

I was having this same issue, I believe it was spelling issue that I wasn’t able to spot but copying the part you mentioned solved my issue. I have tried multiple attempt to fix the spelling and using the provided text in the word problem to solve it but it didn’t work till I did this.

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