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 trialInna Nesterenco
1,331 PointsTable 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
1,331 PointsTHE BODY AND THE HTML DIDNT PASTE ON HERE BUT I HAVE IT ON MY QUIZ
Wayne Priestley
19,579 PointsHi 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
19,579 PointsHi Inna,
You have only added one set of table cells to each table row. You need to have.
<tr>
<td></td>
<td></td>
</tr>
Emma Willmann
Treehouse Project ReviewerWhat is your question?
And, is this all of your html? I don't see any html, head, or body tags.
Sergi Beltran
18,493 PointsWhere is your question?
Inna Nesterenco
1,331 PointsInna Nesterenco
1,331 PointsAdd two table cells inside each table row. Don't fill the table cells with any data yet.
HERE IS THE QUESTION