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
Stephen Sim
2,956 PointsAdd table heading tag.. what am i missing??
I'm stuck on this one HTML Tables challenge..
Task 2 of 8: "Add a table heading tag to the table you just created."
So i wrote the following code:
<table border="1">
<tr>
<th>Fruit</th>
</tr>
</table>
However, I keep getting this incorrect.. What am I missing here?
1 Answer
hlias kantzos
19,191 Points(http://www.w3schools.com/tags/tag_thead.asp) The thead tag is used to group header content in an HTML table. (http://www.w3schools.com/tags/tag_th.asp) The th tag defines a header cell in an HTML table.
Nixon Mahendran
1,467 PointsNixon Mahendran
1,467 Points<table border="1"> <tr> <thead>Fruit</thead> </tr> </table>