Not able to understand what is happening here

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>
  <ul>
  <!-- TODO: Add link to cat photos -->
  <p>Click here to view more cat photos.</p>
  </ul>
  </main>
</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/103.0.5060.53 Safari/537.36

Challenge: Step 6

Link to the challenge:

The instruction is speaking about readability. You will see the example has an unordered list ul and each li child element is indented by 2 spaces, to make it easier to read for the programmer. Remove the ul element, it is only an example for you to consider the application of indentation. Your code so far is all in one line, without any indentation. SO you need to add 2 spaces to your children H2, the comment, and p element in your parent element (main).

1 Like

Thank you so much sir for help😇

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