Hello everyone, pls check my work and rate me. thx
Hello again, @herculesovich888 and thanks for opening a new topic.
You did a fantastic job with this assessment! There is only one small thing that isn’t correct. When using <colgroup>
you need to mention every column (even if the columns to the right don’t need special styling) for it to be valid HTML. Since we don’t want to write out <col>
twelve times we can use the span
attribute:
<colgroup>
<col span="2">
<col style="border: 2px solid black">
<col span="9">
</colgroup>
Everything else is perfect!
Cheers,
Michael
1 Like
wow, this is fantastic, big thx
1 Like