Stuck on Step 64

Step 64

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.

I checked out previous posts but could not resolve the issue. Any clues would be greatly appreciated.

this is my code so far…

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

The last angle bracket in your link is going the wrong direction.

5 Likes

ahhhh gotcha, thank you

2 Likes

use this code that i have try , it works perfectly . nested means you have create the link inside the paragraph [

] tag .

Mod Edit: Solution removed

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

correct way is this
Mod edit: Removed Solution

Thak you!!! I kept trying and it wouldn’t budge. I was removing the

and just leaving the <a.

When this code is clicked, a link will be made to the <a https://www.freecodecamp.org">freeCodeCamp.org.

The href property is used to find the link’s URL. The anchor element is used to wrap the text that will be used as the link.

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