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 HTML Tables HTML Tables

Giridhar Nalakari
Giridhar Nalakari
493 Points

Put two header cells with any text inside of the row you just created.

not understood this question

7 Answers

Frankie Guerra
Frankie Guerra
3,739 Points

< h 1 > any text < / h 1 >

hope that helps! Don't put the spaces. -Frank

Giridhar Nalakari
Giridhar Nalakari
493 Points

thanks..but wat i mean is of header cells in table tag, not header tags.

Frankie Guerra
Frankie Guerra
3,739 Points

Here 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 >

To 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.