Stuck at step 63, kindly help

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

Please talk to us about what you need help with.


I’ve edited your post for readability. 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 (').

my code just wont pass…

Hint supplied: The link’s text should be freeCodeCamp.org. You have either omitted the text or have a typo.

You have the phrase ā€˜freeCodeCamp.org’ twice. It should only be there once. You need to convert the preexisting text into an anchor.

Thanks for your promp response…still unreolved

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

Hint: The link’s text should be freeCodeCamp.org. You have either omitted the text or have a typo.

pls help me understand what to do, thank you

Single quotes are not the same thing as backticks.

Now your anchor element is around nothing… You need to put it around the correct text.

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

still wont pass…should I remove https//:www.freecodecamp.org or No Copyright -freeCodeCamp.org?

But now you’ve put back the second ā€˜freeCodeCamp.org’, breaking the thing that you just fixed a minute ago.

Pretend this is the only text in the universe. Put the anchor tags around the correct part of this text. Add zero additional text.

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

hint; The link’s text should be freeCodeCamp.org. You have either omitted the text or have a typo.

same response…sorry for taking your time… i really want to get it

What is blank? It’s not part of the only text that exists in the universe for this problem.

There is no blank, only freeCodeCamp.org

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


I didnt know what to put there as i didnt want to repeat freecodecamp.org.

I tried the new code but it still wont pass

Getting closer.

You need to exactly match the original text, to include capitalization and spacing.

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

hmmm still the same…pls give me an hint as to the corrections to make

This tag is malformed. An extra space appeared.

Was there a space before the -


You have all the basic pieces. It might be easier to reset the challenge so that you get the original spacing and such back.

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

Got it.......Thank You!!!
1 Like

Huzzah! I knew you could do it! Nice work

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