Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website HTML First Use HTML Elements

Rodrigo Valladares
Rodrigo Valladares
9,708 Points

what is grown?

don't see the resolution of the question, help me pliss

index.html
<!DOCTYPE html> 
  <html>
    <head> 
      <meta charset="uft-8">
      <title>rodrigo | tecno</title>
    </head> 
    <body>
      <header>
        <h1>rodrigo</h1>
        <h2>tecno</h2>

      </header>

      <selection>

         <p>hola </p>

      </selection>

      <footer>
        <p> &copy;| 2017 rodrigo Valladares</p>
      </footer>

    </body> 

  </html>

2 Answers

Jesse Schoonveld
Jesse Schoonveld
2,943 Points

You were very close, you accidentally named the section element selection instead. Having a section element is one of the requirements to complete the challenge, and because you mistook it for another word it's not finding it :)

Moderator Edit: Moved response from Comment section into Answers.