Learn HTML by Building a Cat Photo App - Step 6

Necesito ayuda con el punto 6, no logro entender que me estan pidiendo

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

Your browser information:

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

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

Link to the challenge:

this step is trying to teach you how to write neat code

In this case, they are teaching you about adding spaces to the left of each nested element so it is indented beneath is parent element

In the code shown, main is the parent element and beneath it there are children elements h1, h2, the comment line and p

the lines for h1, h2 and the comment line are indented correctly
exactly 2 spaces to the right of their parent element

the p element needs to be indented also to line up with the others

add 2 spaces on the left hand side of the p element to indent it correctly

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