Information needed!

Tell us what’s happening:
someone to point me to the tiny bit of information i have missed here.
“You need an a element that links to http://freecatphotoapp.com
its not compiling accordingly.

Your code so far


<a>href="https://freephotoapp<wbr>.com">this links to cat photos</a>
<h2>CatPhotoApp</h2>
<main>
  
  
  
  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
  
  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-external-pages-with-anchor-elements

you have inserted '<wbr>' in the middle of your link…
I think that is the problem. Remove that and retry.

Ok mate,

in this challenge, you need to create a link element. and what you using?

<a>Something here</a>

Ok here, it’s all correct, and how you put a hyperlink on link element?

<a href="https://www.google.pt">Something here</a>

So see your code and understand what’s wrong by now :slight_smile:

Many thanks,

Pedro Cruz

it not working maam.

just follow the instructions in the challenge

Create an a element that links to http://freecatphotoapp.com and has “cat photos” as its anchor text.

So you are missing the correct link text. It should be “cat photos”.
if you are still struggling, post your latest code here.

this links to cat photos

This is what i have done but its not compiling.
its telling me i need an a element that links to
http://freecatphotoapp.com
Now thats where am not getting it cause my code seems Ok.

this links to cat photos
Thats my latest code.

What you’re doing is this:

<a href="https://freephotoapp.com">this links to cat photos</a>

But you dont want that. see the hyperlink :slight_smile: and change it

as you said, you want the hyperlink http://freecatphotoapp.com :wink:

Still not going through i don’t know where the problem is .

the problem is the link text. The one you have says “this links to cat photos” but they asked you to make it say something else (review the instructions)

i am beginer same problem to me

Question: Your a element should have the anchor text of “cat photos”.

This is your anchor tag <a></a>, the anchor text goes between the tags and give it a link as specified in the instruction.

Read the instruction more than once and you would understand.