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 trial

HTML HTML Tables HTML Tables

anthony crowell
PLUS
anthony crowell
Courses Plus Student 10,953 Points

Hi, 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 ?

index.html
<!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

Hi 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
anthony crowell
Courses Plus Student 10,953 Points

Thank you, the quiz was looking for <thead> not <th>, my bad :-}

Not stupid at all! This is how we all learn. :grinning: