Assessment wanted for excercise "Structuring planet data"

Structuring Planet Data

Hello @_Aida

you doing great well done just little notice :

  1. for the colgroup you would need one col with span 2 and another col with the style code no need to the others
    so it can be
  <colgroup>
        <col span="2">
        <col style="border: 2px solid black"> or    <col style="border: solid">
        <col span="9">
      </colgroup>

or

  <colgroup>
        <col span="2">
        <col style="border: 2px solid black"> or    <col style="border: solid">
      </colgroup>
  1. for each th element you should specifiy the scope but you missed it for the first tr

  2. the first tr would be better if wrapped by thead

  3. the other tr would be wrapped by tbody

hope that help and have a nice day :slight_smile:

1 Like

Thanks so much @justsomeone ! :slightly_smiling_face:

1 Like

you very welcome :slight_smile: