Anchor input not working

Tell us what’s happening:

I’m having issues with continuing with anchor element. I’ve input it several times but it is not working. Any help please?

Your code so far


<h2>CatPhotoApp</h2>
<main>
<a href="freecatphotoapp.com">Cat Photos<a/>

<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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362.

Challenge: Link to External Pages with Anchor Elements

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

hh you forgot to put the whole web site link with https:// with it
this have to make it done

<a href="http://freecatphotoapp.com" >cat photos</a>

I tried that and it keeps saying I need an “a” element that’s linked to catphotoapp .com

1 Like

hh you forgot to put the whole web site link with https:// with it
this have to make it done

<a href="http://freecatphotoapp.com" >cat photos</a>

The syntax of the <a> closing tag is not written correctly. Revise and fix this, and your challenge should be solved.

Good luck!

I was able to figure it out, Thanks guys! xo

1 Like

Glad to see it has been now solved. :slight_smile:

Happy coding!