Learn HTML by Building a Cat Photo App - Step 12

here is my code and i cant seem to understand where in p element i have gone wrong

See more cat photos in our gallery cat photos is great.

<body

CatPhotoApp

Cat Photos

  <p>See more cat photos in our gallery <a href="https://freecatphotoapp.com">cat photos</a> is great. </p>
  <a href="https://freecatphotoapp.com">link to cat pictures</a>
  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
</main>
```

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the community @stine !

Here is the excellent example provided to us in the instructions for this step.

<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>

Before the anchor was added to this example, it read:

<p>I think freeCodeCamp is great!</p>

I suggest using the example focusing on how the anchor with its attribute and value in the opening anchor touch freeCodeCamp .
As well, the closing anchor touches the end of freeCodeCamp to create the link.
Nothing else is changed in any way.

I hope this helps you!

Happy coding!

2 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.