Assessment Request for Structuring Planets Data Exercise

Just looking for another assessment for next exercise.

Structuring Planet Data
Assessment

Hi @ejcortinas :wave:

Excellent work :tada: It looks exactly as it should.

One small thing about the HTML structure. Inside your <thead> tag you need a <tr> around all the <th> and <td>. Otherwise it’s not valid HTML.

<thead>
  <tr> <!-- HERE -->
    <td colspan="2"></td>
    <th scope="col">Name</th>
    ...
  </tr> <!-- AND HERE -->
</thead>

Have a nice day! :slightly_smiling_face:
Michael

@mikoMK It’s the little things. Thanks for catching that!

1 Like

Luckily, browsers are good at correcting our little mistakes :wink:
An easy way to check if the HTML is valid is by pasting the source code into the HTML validator by W3C. That’s how I catched your error. I didn’t notice it by looking through your code :grin: