Help on catphoto html 14

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>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">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."><a href="https://freecatphotoappncom"></a>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (iPad; CPU OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/93.0.4577.78 Mobile/15E148 Safari/604.1

Challenge: Step 14

Link to the challenge:

You should put the img tag inside a tag.
And you have some typos also

Example code:

<a href="https://example.com">
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
</a>

I tried but it say’s You should only add one opening anchor (a ) tag. Please remove any extras.

Send a screenshot of your code let’s help.
It may be that use used an anchor opening tag more than once

Did you forget to change the url of the anchor tag?

I had that problem, just watch your caracters, i couldn’t pass because a < in the begginning of img=“”

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