How can i scale this step?

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

  **Your code so far**
<html>
<body>
  <main>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <main>
  <ul>
    <li> Child Element 1 </li>
    <li> Child Element 2 </li>
  </ul>
  </main>
  <!-- TODO: Add link to cat photos -->
  <p>Click here to view more cat photos.</p>
  

</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36

Challenge: Step 6

Link to the challenge:

Hi, please in future explain your coding problem in detail. Use the main body of the forum post for this, not just the title section. This is good practice and makes it easier to help,

First the list element is an example, you don’t need to copy and paste it into your code. It was an example of what indented text looks like. You also should not add another main element, a html file should only have one main element.

Second, this is an example of intended code. It means putting two spaces before the code to move the code to the right if it is inside another element.

<main>
  <h1>Why I like cats</h1>
  <section>
    <h2>They are cute</h2>
    <p>cats are cute and stuff.</p>
  </section>
</main>

Hope this helps!

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