Please help me with this what i need to do 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>
<!-- 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/102.0.0.0 Safari/537.36

Challenge: Step 6

Link to the challenge:

You need to add the indentation to your code. In this way you have the power to read better you code.

Indent you comment and p element

In this step it is asked to:
“Add two spaces in front of the three child elements of main so your HTML is more readable.”

main tag in this case has 3 child elements and you can recognize them because they are surrounded by these symbols < > and they are inside the main tag, everything included between main opening and closing tag

to indent in web development means that you need to move the child elements 2 spaces forward in the code so it is clearer to you and whoever is reading your code which are the child elements and which is the parent element

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