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 table cells inside each table row. Don't fill the table cells with any data yet.

assist here

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>HTML Tables</title>
  </head>
  <body>
 <table border="1">
          <thead>
                 <tr>
  <!-- This <tr> should be removed -->
  <tr>
  <td></td>
  <td></td>
</tr>
           </thead>
           <tbody>
                  <tr>
                       <td>Apples</td>
                       <td>Broccoli</td>
                  </tr>
                   <tr>
                        <td>Oranges</td>
                        <td>Cucumbers</td>
                   </tr>
         </tbody>  
</table>

  </body>
</html>

1 Answer

Antti Lylander
Antti Lylander
9,686 Points

There is so much going on in your code. Starting from scratch, all you need to add are these tags:

<table> <tr> <td>

Here is an example with two rows, three cells on each row.

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

  <tr>
    <td></td>
    <td></td>
    <td></td>
  </tr>

</table>