The link of free cat photo app is non existent, i cant continue

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>

<a href="https://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/80.0.3987.163 Safari/537.36.

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

If you look at the url in the test suite output, you have a typo:

// running tests
You need an a element that links to http://freecatphotoapp.com
// tests completed

yes i already check the typo, but if you click on the link site , cant access

You fixed https to http? If you did, then the tests should pass. The url is not for a real website - the link redirects to FCC.

<a href="http://freecatphotoapp.com">cat photos</a>
you have to remove img tag and add above code, then run the test.

Hi, I just finished this task and i think you don’t need to access to the link but if you want to,you can put your cursor on the link adresse in your code area ,a small message should pop up ''follow the link",it’ll lead you to freeCodeCamp home page .

You do not need to remove the img tag. The code that @tchub posted only needs the url fixed from https
to http.