Assessment wanted for Structuring planet data - Dill

Hello,

I did the Structuring planet data assignment. I posted my results on Codepen. I feel fairly confident in it, which concerns me. If you wouldn’t mind taking a look at it, I would appreciate it.

Thank you.
Dill.

No need to be concerned. You did great! :smiley: :medal_sports:

Only some small improvements:

  • You could simplify the <colgroup> by using the span attribute on the <col>s:
    <colgroup>
      <col span="2">
      <col style="border: 2px solid black">
      <col span="9">
    </colgroup>
    
  • The <caption> element needs to be the first child of <table> to be valid HTML.
  • &nbsp; can be ommited in empty cells. Just use <td></td>

I think that’s all. As I said only small things. All the rest of the table is perfect! :ok_hand:

I hope that helps.
Have a nice day,
Michael

1 Like