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

Clinton Hopgood
Clinton Hopgood
7,825 Points

Front-end Web Development > HTML > Stage 6 (Tables) > Code Challenge

I believe there may be a problem here. I cannot get past task 2 of 8.

I'm asked to add a heading tag to the table, which I do as below but am told it's wrong.

Challenge task 2 of 8

Add a table heading tag to the table you just created.

<table>
  <th></th>
</table>

I also tried adding table row tags around the table header tags.

<table>
  <tr>
    <th></th>
  </tr>
</table>

Bummer! Try adding a table heading tag inside of the table.

How is this wrong?

2 Answers

Hi Clinton,

The table heading element is thead