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

Stack on Challange task, 2nd exercize.

The task is "Add a table header to table".

<table> <tr> <th>HeADEr</th> </tr> </table> But not accepting, Where is the mistake>?

3 Answers

Bertan Ulusoy
Bertan Ulusoy
18,047 Points

You need to create the table's header with <thead> tag. The code should look like this:

<table>
  <thead></thead>
</table>

Thank you very much.