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 trialKim Dallas
11,461 PointsI don't remember this being covered
I'm missing something for 2 columns
<!DOCTYPE html>
<html>
<head>
<title>HTML Tables Challenge</title>
</head>
<body>
<h1>HTML Tables Challenge</h1>
<!-- Write your code below -->
<table>
<thead>
<tr>
<th>fruits</th>
<th>vegetables</th>
</tr>
<tr>colspan</tr>
</thead>
<tbody>
<tr>
<td>oranges</td>
<td>apples</td>
</tr>
</tbody>
</table>
</body>
</html>
1 Answer
Nina Maxberry
10,630 PointsYou need to create a style in the head that defines the table, header (th) and the row (td). That is all it is asking for. <style> table, th, td [ border: 1 px solid black; } </style>