It says i have them in wrong order but i don't understand what it means

Tell us what’s happening:
Describe your issue in detail here.
i got through step 4 without any help that’s probably my biggest achivement in my life that I’m happy about
step 5 is really hard to understand, what order is the correct order?

  **Your code so far**

<html>
<body>
 <h1><main>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/101.0.0.0 Safari/537.36

Challenge: Step 5

Link to the challenge:

Hi,
So when it says add a main opening section after the h1, it means add it after the h1’s closing tag.

An element refers to an opening and closing html tag or a self closing one (those will come later.)

<h1>I am an element</h1>

So if you are told to put something after an element it means doing this.

<h1>I am an element</h1>
<p>I come after the element</h1>

Hope this helps!

thank you so much

i completed this step thank you for replying to me

1 Like

No problem! Glad I could help. :smiley:

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