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 trialMaximilian Lemos
1,654 PointsCode Challenges can be pretty frustrating sometimes. WTH. This shouldn't be that hard.
The challenge says: Add a table heading tag to the table you just created. How does this not meet the requirements? Code pasted below:
<table>
<tr>
<th>Header</th>
</tr>
</table>
3 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Maximillian,
Your html has been stripped out. Here's a thread on how to post code in the forums: https://teamtreehouse.com/forum/posting-code-to-the-forum
I can't see your html but a common mistake on this task is to use <th>
The table heading tag is <thead>
Michael Hulet
47,913 PointsI think what it wants you to do is this:
<table>
<thead>
</thead>
</table>
Maximilian Lemos
1,654 PointsThanks for the tips. Fixed. =)