Learn HTML by Building a Cat Photo App - Step 8

I´m trying to pass this level of the free code course, but I keep getting an error message.

Here is the full code:

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos in our gallery.</p>
      <img src="">
      <img src="">

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg">
    </main>

<!-- User Editable Region -->

  </body>
</html>

I´m usign google chrome without problems with any other course level.

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

Link to the challenge:

I will really appreciate if someone could tell me if it is an error in the page or in my code. thank you.

Your code passes for me. Sometimes switching to another browser can fix situations like these. The only other thing that could be causing the issue is the closing main tag is inside the user editable region in your code, moving that to the outside should fix it. To fix that positioning you can reset the challenge, and make sure to change no spacing or anything besides the img element src

After writing this post I realized that there are two <img src="">outside the editable part of my code.
I proceeded to delete it from the same screen of the course and I was able to pass step 8. Apparently the problem was outside the editable area and that’s why I couldn’t fix it before. Thank you so much.

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