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 trialvivekyadav
9,776 PointsAdd a table heading tab. Please let me know what is the issue with my html code for adding heading to table.
I am not able to submit my code and it gives error
<!DOCTYPE html>
<html>
<head>
<title>HTML Tables Challenge</title>
</head>
<body>
<h1>HTML Tables Challenge</h1>
<!-- Write your code below -->
<table border="1">
<tr>
<th>Frutis</th>
</tr>
<tr>
<td>Oranges</td>
</tr>
</table>
</body>
</html>
1 Answer
Ayoub AIT IKEN
12,314 Pointshey, in the challege, it is asked from you to build a table like its shown in the video :
<table>
<thead>
<tr>
<th>some text</th>
<th>some text</th>
</tr>
</thead>
<tbody>
<tr>
<td>Some text</td>
<td>some text</td>
</tr>
<tr>
<td colspan=2>some text </td>
</tr>
</tbody>
</table>
vivekyadav
9,776 Pointsvivekyadav
9,776 PointsThanks :)