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 Deep Dive - Tables video

Hello,

I noticed that the video did not explain the tbody element (only thead & tfoot) but this was asked in the Code Challenge.

2 Answers

I figured it out, I think:

<table border="1">

<thead>
     <tr>
          <th>Fruits</th>
          <th>Vegetables</th>
     </tr>
</thead>

<tbody>
    <tr>
        <td>Apples</td>
        <td>Salad</td>
    </tr>
</tbody>

</table>

If you are still having an issue with the code challenge, please post your code here. Don't forget to indent each line, 4 spaces so it's formatted correctly by the forum.