Learn HTML by Building a Cat Photo App - Step 17

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

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>

<!-- User Editable Region -->

      <section>        
        <teste>  
          <h2>Cat Photos</h2>
          <!-- TODO: Add link to cat photos -->
          <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
          <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
        </teste>
      </section>
      

<!-- User Editable Region -->

    </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/109.0.0.0 Safari/537.36 Edg/109.0.1518.70

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

Link to the challenge:

I already included the second section, and now the error is "
Your section element should have an opening tag. Opening tags have this syntax: <elementName> .

But the section teste has a opening tag.

There is no such HTML element named teste. You should be adding a second section element. And that new element needs to come after the current section element.

Ok, I did what you said, and now the problem is:

The second section element should not be nested in the first section element.

Exactly! Read better the hint.
Vais chegar lá :wink:

You have nested the new section within the current section.

You want to add the new section after the current section.

Thank you, now I understand what I was doing wrong.

You may want to add W3 schools to your favorites tab because its a VERY helpful resource especially for html coding.
link below: