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 trialGiridhar Nalakari
493 PointsPut two header cells with any text inside of the row you just created.
not understood this question
7 Answers
Frankie Guerra
3,739 Pointsmaybe this website can help out.
Frankie Guerra
3,739 Points< h 1 > any text < / h 1 >
hope that helps! Don't put the spaces. -Frank
Frankie Guerra
3,739 Points<h1>any text</h1>
Giridhar Nalakari
493 Pointsthanks..but wat i mean is of header cells in table tag, not header tags.
Frankie Guerra
3,739 PointsHere is an example tr = table row th = title header td = title data
< t r > < t h > Rock Music < / t h > < t h > Rap Music < / t h > < / t r > < t r > < t d > Metallica < / t d > < t d > Sir Mix-a-lot < / t d > < / t r > < t r > < t d > Bon Jovi< / t d > < t d > 2-Pac < / t d > < / t r >
Giridhar Nalakari
493 PointsThanks
Antoni Zalewski
5,211 PointsTo make it more neat for others in need to apply the code :-)
<!-- Write your code below -->
<table>
<thead><tr>
<th>Text01</th>
<th>Text02</th>
</tr></thead>
</table>
hope it helps.