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 trialCharles Harpke
33,986 PointsCreate a table row with a cell that sons 2 columns....
I have tried this a variety of ways.....here is my code: ''' <!DOCTYPE html> <html> <head> <title>HTML Tables Challenge</title> </head> <body> <h1>HTML Tables Challenge</h1>
<!-- Write your code below -->
<table border="2">
<thead>
<tr>
<th>German Cars</th>
<th>Japanese Cars</th>
</tr>
</thead>
<tbody>
<tr>
<td>BMW</td>
<td>VW</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2" align="center"> This is two columns </td>
</tr>
</tfoot>
</table>
</body> </html> '''''
yet it does not pass through????
2 Answers
Dustin Matlock
33,856 PointsHey Charles, try moving the code for two columns above the footer.
Charles Harpke
33,986 PointsMoving it above the footer worked...thanks!