Tell us what’s happening:
Describe your issue in detail here.
Please help me here, tried everything but my code has failed to pass. thank you Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<!-- User Editable Region -->
<p> See more cat photos in our gallery.
<a href= "https://freecatphotoapp.com"> cat photos </a>
</p>
<a href="https://freecatphotoapp.com">link to cat pictures</a>
<!-- User Editable Region -->
<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>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 12
You don’t want to add an extra cat photos to the sentence in the p element. You want to turn the existing cat photos in the middle of the sentence into a link.
You do have the right idea. However,the anchors should be around the text within the p element. No need to make a separate ‘cat photos’ to anchor.
If you delete that, and place the anchors around the words within the p element, you will pass.
Hope this helps you!
Happy coding!
I suggest resetting the lesson. It appears you know the correct way to anchor text. I would suggest just adding the anchor into the text that is already in the p element. Put it round only the words ‘cat photos’ in the original p element text.
For example only: < p> Mary Jane had two cats.
I have anchored two cats using < a > two cat < /a > I hope this helps.