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 HTML Tables HTML Tables

Table Heading Error

Don`t know what happened with the challenge the table heading is correct and get the erros "Try adding table heading inside the table". It is inside the table.!

2 Answers

By the end your table should look something like this, hope it helps.

   <!-- Write your code below -->
  <table>
    <thead>
      <tr>
        <th>hi</th>
        <th>hello</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Hi</td>
        <td>Hello</td>
      </tr>
    </tbody>
   </table>

Thank you I was using the tag <th> instead <theader>..