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

General Discussion

Challenge 2 under the Build A Simple Website/Tables Badge

So I am taking the code challenge for the tables under the build a simple website badge and this is the code I use because it is asking me to Add a table heading tag to the table you just created.

<table border="1">
  <tr>
    <th>Month</th>
  </tr>
  <tr>
    <td>January</td>
  </tr>
</table>

The challenge tells me to this is wrong WHY?

2 Answers

samiff
samiff
31,206 Points

I suppose the instructions could be a bit more clear on this, they're actually looking for the <thead> element to be used for that question.

Thanks Sam