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

Tell us what’s happening:

Hello guys again i need a little help to get out of this section

Your code so far


<h2>CatPhotoApp</h2>
<main>
<a href="http: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 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36.

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

Look closely at the URL you’re to use. You have a typo…rather, you’re missing two things that are needed.

Your a tag URL should have a double after the colon like: <a href="https://freecatphotoapp.com">cat photo</a>

<a href='http://freecatphotoapp.com'>Cat photos</a>
Look at mine and look at yours… you have missed the (double slash)

//

after href: in your code… Thats all…

Thanks :slight_smile:

Thank you :slight_smile:

1 Like

Thanks for the help :slight_smile:

Glad I could help. Happy coding!