Learn HTML by Building a Cat Photo App - Step 14

okay I just can’t get through this challenge. the hint keeps telling me that I should I only add one opening tag but I do only have one opening tag. Not looking for the answer just a more helpful hint/tips to figure it out myself.

my code so far:
<img src=“https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg” alt=“A cute orange cat lying on its back.”

  **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 href="https://freecatphotoapp.com">
  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" </a> alt="A cute orange cat lying on its back."
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15

Challenge: Learn HTML by Building a Cat Photo App - Step 14

Link to the challenge:

Hi, so I’ve audited your code and it looks pretty good to me. Some advice I will give you is that capitalization and spelling errors will SCREW YOU OVER. My advice is to also learn to type at roughly 80-100 wpm using touch typing, it’ll save you a lot of time.+

You’re missing a > for img and alt attribute should be within img tag, your alt attribute is outside of img tag now

Eg

<img src="" alt="">

Closing tag of a should be done after closing tag of img

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