Learn HTML by Building a Cat Photo App - Step 9

Tell us what’s happening:
Describe your issue in detail here.
I’ve been doing everything correctly so far but I don’t know why its saying I’m doing the wrong thing I’ve cross checked it like multiple times what’s the problem.
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 cat photos.</p>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg">
    <img src="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/105.0.0.0 Safari/537.36

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

Link to the challenge:

The html code you added is not wrong per se. The problem is that the exercise doesn’t want this new line of code.
Rather it wants you to add something to the given line of code (which was the top one in this case).
So just add the alt tag to the line of code given to you, rather than adding a whole new image. And hopefully that will work.

1 Like

LOL :joy: thank you when i tell you i got it immediately i posted you would’nt believe me but thank you for further explaining

1 Like

no worries. You can always update the post to let us know that you found a solution. (just don’t post any solutions specifically on the forum as that is frowned upon though)

1 Like

no problem, completely understood.

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