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 trialTony Bourne
2,432 Pointsadd cells with text to your table body.
I'm on task 7 of 8 now. Need help on this one though!
<!DOCTYPE html>
<html>
<head>
<title>HTML Tables Challenge</title>
</head>
<body>
<h1>HTML Tables Challenge</h1>
<!-- Write your code below -->
<table border="1">
<thead>
<tr>
<th>These are my Favourit Fruits.</th>
<th>Cool Vegies</th>
<td>Orange.</td>
<td>Carrots.</td>
</tr>
</thead>
<th>Fruites.</th>
<th>Vegitables.</th>
</table>
<table>
<tr>
<td>Yum.</td>
<td>Sweet.</td>
</tr>
</table>
</body>
</html>
2 Answers
Antonio De Rose
20,885 Pointsthese all should come under one table tag, you have opened so many table tags, these are like sections, thead comes at the start, then comes the body, and then the foot.
<table>
<thead>
<tr>
<th>These are my Favourit Fruits.</th>
<th>Cool Vegies</th>
</tr>
</thead>
<tbod
<tr>
<td>Yum.</td>
<td>Sweet.</td>
</tr>
</tbody>
</table>
Nijesh Nj
18,232 PointsTry This Out:
<!DOCTYPE html>
<html>
<head>
<title>HTML Tables Challenge</title>
</head>
<body>
<h1>HTML Tables Challenge</h1>
<!-- Write your code below -->
<table>
<thead>
<tr>
<th>Any Text</th>
<th>Any Text</th>
</tr>
</thead>
<tbody>
<tr>
<td>Any Text</td>
<td>Any Text</td>
</tr>
</tbody>
</table>
</body>
</html>