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 trialanthony crowell
Courses Plus Student 10,953 PointsHi, The quiz on tables, question number two, says to create a heading inside the table. I I'm answering it correctly
<table> <tr> <th> </th> </tr> </table> Is how I'm answering it, but the quiz is saying its wrong without any options. Can you help ?
<!DOCTYPE html>
<html>
<head>
<title>HTML Tables Challenge</title>
</head>
<body>
<h1>HTML Tables Challenge</h1>
<table>
<th></th>
<tr></tr>
</table>
</body>
</html>
2 Answers
Jim Withington
12,025 PointsHi anthony crowell ,
It looks like your h1 tag and heading text is just before your <table>
tag, so that means that the heading is actually outside of the table.
Hope that points you in the right direction!
anthony crowell
Courses Plus Student 10,953 PointsThank you, stupid question on my part.
Jim Withington
12,025 PointsNot stupid at all! This is how we all learn.
anthony crowell
Courses Plus Student 10,953 Pointsanthony crowell
Courses Plus Student 10,953 PointsThank you, the quiz was looking for <thead> not <th>, my bad :-}