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

add two tables cells inside each table row. don't fill the table cells with any data yet be sure to include 2td in

be sure to include 2 td tags in each of the 4 tr tags

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


  <tr>
    <tr>
    <td></td>
    <td></td>
  </tr>
    <tr>
    <td></td>
    <td></td>
  </tr>
    <tr>
    <td></td>
    <td></td>
  </tr>
  </table>
  <body>

  </body>
</html>

1 Answer

Mohammed Khalil Ait Brahim
Mohammed Khalil Ait Brahim
9,539 Points

I think the problem is the additional tr you add before the td

<tr>
  <!-- This <tr> should be removed -->
  <tr>
  <td></td>
  <td></td>
</tr>

You're a lifesaver.