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.

Add two table cells inside each table row. Don't fill the table cells with any data yet.

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

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

    </table>

  </body>
</html>

1 Answer

Luis Miguel Hernandez
Luis Miguel Hernandez
4,266 Points

You need to put the <td> tags into <tr> tags, like this:

<table>
    <tr>
        <td>Name</td>
        <td>Job</td>
    </tr>
</table>