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 Table Basics Create a Table

Ok is this a bug? or am I doing something wrong. It wants me to put two cells in each row.

I get the "Bummer make sure you put exactly two <td> tags in each of the four <tr> tags.

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>HTML Tables</title>
  </head>
  <body>
    <table>
      <tr>
      <td></td>
      <td></td>
      </tr>
      <td></td>
      <td></td>
      <tr>
      <td></td>
      <td></td>
      </tr>
      <tr>
      <td></td>
      <td></td>
      </tr>
      <tr>
      <td></td>
      <td></td>
      </tr>
    </table>
  </body>
</html>

1 Answer

Salvador Cervantes
Salvador Cervantes
10,898 Points

Hey,

Looking at your code, I see that you have two <td> outside of a <tr> nest. The first <tr> nest is fine but right after that, i see two <td> that are not inside <tr>

Hope that helps

Oopps. Yeah I went ahead and re-did the whole challenge from scratch and it worked. Thanks!