Responsive Web Design Step 14 stuck

I’ve tried this a few different ways and searched for other examples, used answers from other forum posts, but I’m simply not seeing what I’m doing wrong. It does keep telling me I may have deleted the link or that I need an opening tag. If I add the > then it breaks anyway, but taking the > off just tells me I need the links and moving things around hasn’t clicked yet.

  **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>
    <a target="_blank" href="https://freecatphotoapp.com" <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
  </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/101.0.4951.67 Safari/537.36

Challenge: Step 14

Link to the challenge:

You have to add the > after the href link (href="https://freecatphotoapp.com")

you need to move the <img> tag outside the <a> tag right now it is inside the href declaration. It needs to at the end of the <a> and before the </a>

Have a Great Day

When you are typing a html element in the forum, make sure you format it properly, with backticks(.), otherwise it is not readable.

For example :
This is an element. (An a element).
Can you see it properly?
This is an <a> element. (An a element).
If you type an element for It to be seen you have to surround the element with the backticks.


Right now, I have edited the post for you.

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