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

How do I get HTML tables to pass?

I am stuck on the HTML tables task, within the deep dive and have been for a very long time now.

Does anyone have the solution to this? What is being asked from me is very unclear indeed. I have tried literally everything.

Hi Sean, Can you post the URL to the Task ??

Thanks

2 Answers

on3iro
on3iro
12,644 Points

Ok, on 4 your code should look something like this:

<table>
      <thead>
        <tr>
          <th>Some Text</th>
          <th>Some Text</th>
        </tr>
      </thead>
    </table>

Hope that helps :)

on3iro
on3iro
12,644 Points

On which step are you having trouble?

So first of you just need to create a table:

<table></table>
on3iro
on3iro
12,644 Points

Then a Table-header:

<thead></thead>

And so on - just specify where you got stuck, because otherwise i need to write down the whole exercise ;)

Hi, sorry, I should have said which task beforehand.

The one I am stuck on is 4 of 8.

Thanks :)