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

Table Heading

I am working on the .html course and ran into a problem with table headings. Particularly "[A]dd a heading tag to the table (you just created)". Here is what I put:

<table>
     <tr>
       <hd></hd>
      </tr>
    </table>

What am I missing here. Thanks in advance!

I'm not able to see your code. Check the "Markdown Cheatsheet" linked under the comment/answer text field for hints on how to format code.

1 Answer

the challenge wants you to use the <thead></thead> tag, not add a header row using <tr><th></th></tr>. Its kind of a misleading/confusing question.

Great Stone, thanks for clearing that up!!