Learn HTML by Building a Cat Photo App - Step 6

“The opening p tag should have indentation that matches your h2 and comment elements. Its opening tag should start 6 spaces over from the start of the line.
Describe your issue in detail here.”

I cannot find what is the issue here

Your code so far

<html>
  <head>
    <title>CatPhotoApp</title>
  </head>
  <body>
      <h1>CatPhotoApp</h1>
      <main>
      <!--TODO: Add link to cat photos-->
      <h2>Cat Photos</h2>
      <p>See more cat photos in our gallery.</p>
         <img src="https://bit.ly/fcc-relaxing-cat"style="width:200px;height:200px;">
          <h3>Cat Lists</h3>
          <p style=font-size:20><b>Things cats love:</b><br><i>*cat nip<br><i>*laser    pointers<br>*lasagna</p>
          <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg">
           <p style=font-size:20><b>Top 3 things cats hate:</b></p>
           <p style=font-size:20><small><i>1. flea treatment<br><i>2. thunder<br><i>3. other cats</small></p>
            <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg">
             <p style=font-size:20>Cats hate other cats.</p>
              <h4 style=font-size:19>Cat Form</h4>
          <p style=font-size:19>Is your cat an indoor or outdoor cat><br>Indoor  Outdoor<br><br>What's your cat's personality?<br>Loving  Lazy  Energetic</p>>
      </main>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

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

Link to the challenge:

The code you pasted above does not seem to be for step 6.

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