Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p cat photos>Click here to view more.</p>
<a href="https://freecatphotoapp.com">cat photos</a>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
</main>
</body>
</html>
Hi, you’ve put the text cat photos inside the p tag, the lesson isn’t telling you to do that. It wants you to put the link inside the first p element. Here’s an example of what this looks like. Look at your own code and try to apply it.
<p>Here is a paragraph <a href="example.com">with a link inside</a> the paragraph</p>
Also in future please link to the lesson, makes it a bit easier for folks on the forum to go to it and test your code/refresh our memory of the lesson instructions.
Hope this helps!
2 Likes
thanks so much, it worked