<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.
<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!!!
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.