Learn HTML by Building a Cat Photo App - Step 7

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photo                                <p>See more cat photos in our gallery.</p>
      <img>element<img>

<!-- User Editable Region -->

    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36

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

Link to the challenge:

First, do not delete anything that is already there. You are only adding something, not removing anything. You might want to restart the step to get the original HTML back.

The only thing you are adding is an img element below the existing p element. The img element is a self-closing tag which means it only has an opening tag, not a closing tag. So add the opening img tag below the existing p element. If you make any changes other that this then the tests will fail.

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