<p>Click here to view more <a href="https://freecatphotoapp.com" target="_blank">cat photos</a></p>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
this from your first post
Add a href element before img src then closing tag for a element
Do not erase anything
the part:
Still no luck , could you check this one . I have restarted the Lesson.
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more
<a href="https://freecatphotoapp.com" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
</a>
</p>
</main>
</body>
</html>