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

Inna Nesterenco
Inna Nesterenco
1,331 Points

Table cells and table rows

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>HTML Tables</title>
  </head>
  <body>
    <table>
      <tr>
        <td></td>
      </tr>
      <tr>
        <td></td>
      </tr>
      <tr>
        <td></td>
      </tr>
      <tr>
        <td></td>
      </tr>
    </table>
  </body>
</html>
Inna Nesterenco
Inna Nesterenco
1,331 Points

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

HERE IS THE QUESTION

Inna Nesterenco
Inna Nesterenco
1,331 Points

THE BODY AND THE HTML DIDNT PASTE ON HERE BUT I HAVE IT ON MY QUIZ

Wayne Priestley
Wayne Priestley
19,579 Points

Hi Inna,

I've edited your code so it appears correct in your post.

Here is a link to explain how to use Markdown to post your code How to post code

If you look at the bottom of the box when your typing a reply you will see Markdown Cheatsheet that will also explain how to post your code.

Hope this helps.

3 Answers

Wayne Priestley
Wayne Priestley
19,579 Points

Hi Inna,

You have only added one set of table cells to each table row. You need to have.

  <tr>
    <td></td>
    <td></td>
  </tr>
Sergi Beltran
Sergi Beltran
18,493 Points

Where is your question?