Hi I can’t seem to find the particular error I have made here, have I made a typo or is there a mistake with the anchor tags or something missing?
<footer>
<p>
No Copyright - freeCodeCamp.org <a href="https://www.freecodecamp.org"></a>
</p>
</footer>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 63
Link to the challenge:
hbar1st
2
Let me explain the anchor tag to you.
An anchor tag has 2 parts similar to this:
<a href="http://www.google.com">Click Me!</a>
Notice that the first part is this one:
<a href="http://www.google.com">
and that is followed by some words Click Me!
then finally we have a closing tag:
</a>
So in this example the words “Click Me!” will become the link, correct?
What if I wanted to make only one of the words into a link? What should I do diffferently?
In this exercise you are being asked to make a single word into a link. So if you do this correctly, the preview will look like this:
No Copyright - freeCodeCamp.org
1 Like
Thank you so much I managed to solve it, you broke it down into simpler steps too that really gave me a good understanding. <3
1 Like
system
Closed
4
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.