I am stuck in Step 6 please help

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

  **Your code so far**

<html>
<body>
  <h1>CatPhotoApp</h1>
<main>   
    <h2>Cat Photos</h2>
  <!-- TODO: Add link to cat photos -->
  <p>Click here to view more cat photos.</p>
</main>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-A730F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.59 Mobile Safari/537.36

Challenge: Step 6

Link to the challenge:

what does step 6 tell you to do

Hello. “Ident” means to shift the starting of text on the line to the right.

Not indented:

  <body>
  <h1></h1>
  </body>

Indented:

  <body>
     <h1></h1>
  <body>

Use the TAB key on your keyboard. The purpose of indenting is to make things easier to read later on. To make it easier to understand the parent-child relationship of elements.

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