Asking for advice

Tell us what’s happening:
Describe your issue in detail here. I need to add this section> . Where does this exactly is suppose to go?```

  • Child Element 1
  • Child Element 2
``` and I cant figure it out unfortunately
  **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; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36 OPR/87.0.4390.45

Challenge: Step 6

Link to the challenge:

Hi there!

Actually, this step is focused on the importance of HTML formatting for a better look and feel.
Every child tag should be indented inside of its parent tag to improve readability, like this:

<ul> 
  <li> Child Element 1 </li>
  <li> Child Element 2 </li>
</ul>

So this lesson is asking you to do the exact same for the h2 , comment and p elements nested inside the main element.

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