Learn HTML by Building a Cat Photo App - Step 6

I just do not know what I am doing and I need help.

CatPhotoApp

Cat Photos

See more cat photos in our gallery.

See more cat photos in our gallery

<html>
  <body>

<!-- 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><p>See more cat photos in our gallery</p>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 6

Hey @wallstreetinvestor38 ,

First reset your code so you start from the ground up, the last paragraph element that you added is not necessary.

And after that, in your only paragraph element add the missing indentation at the beginning of it by adding two spaces using your space bar. You’ll see that after doing that, the paragraph element will be at the same level as your headings above.

Hey Juanca,

Is there supposed to be a ?

It won’t let me type it but it is the main thing.

What do you mean? After resetting your code using the reset button, you should have the following code available:

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

You only need to modify this line: <p>See more cat photos in our gallery.</p> by adding two spaces at the beginning.

3 Likes

Oh ok thank you so much now I understand it. I thought I was creating a new line.

1 Like

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