Thanks for the help.
Finally done with HTML module. Time to tackle CSS now
Hello @Niloy28
Congratulations on completing the HTML module!
Again, you did a great job on the exercise. Here are my comments:
- The
<caption>
needs to be the first element inside<table>
to be valid HTML. - You could use the
span
attribute on<col>
to write less lines. This would be the same:<col span="2"> <col class="names"> <col span="9">
- In most cells you have a space after the number. These should be removed.
I hope this is helpful to you.
Cheers,
Michael
1 Like