Learn HTML by Building a Cat Photo App - Step 8

Tell us what’s happening:
Describe your issue in detail here.
my code is not approved

  **Your code so far**<img>src="https://sci360.pk/wp-content/uploads/2022/07/32349775_1674196272697249_8891411364552114176_n.jpg">
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click </p>
    <img>src="https://sci360.pk/wp-content/uploads/2022/07/32349775_1674196272697249_8891411364552114176_n.jpg">
  </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/104.0.0.0 Safari/537.36

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

Link to the challenge:

“src” is and attribute, all attributes go in the open tag, in this case it would be

The correct way to put it would be
<img src="">
this exercise ask you to put the url with the photo of a cat, so the finished exercise would be
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg">

This would display the picture of the cat the exercise is asking

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