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>
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
But you didn’t. If you link the Step, then I can more easily show you how you didn’t.
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
Make the text
freeCodeCamp.org
into a link by enclosing it in an anchor (a
) element. Thehref
attribute should be set tohttps://www.freecodecamp.org
.
You turned the text
into a link.
h1 {
text-align: center;
}
.marker {
width: 200px;
height: 25px;
background-color: red;
margin: 10px auto;
}
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.