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

Goutham Bandaru
Goutham Bandaru
2,018 Points

how to add cells into a table?

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>
        <td>Name</td>
        <td>E mail</td>
        <td>job title</td>
      </tr>
           <tr>
        <td>nice patrick</td>
        <td>patrick@example.com</td>
        <td>web designer</td>
      </tr>
           <tr>
        <td>steve jobs</td>
        <td>jobs@example.com</td>
        <td>front end developer</td>
      </tr>
          <tr>
        <td>steve </td>
        <td>steve@example.com</td>
        <td>front end developer</td>
      </tr>


    </table>
  </body>
</html>

1 Answer

Brian Jensen
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Brian Jensen
Treehouse Staff

With <td></td> like you did, BUT the challenge only wants 2 per table row you have 3.

So as example change:

      <tr>
        <td>Name</td>
        <td>E mail</td>
        <td>job title</td>
      </tr>

to:

      <tr>
        <td>Name</td>
        <td>E mail</td>
      </tr>