Just looking for another assessment for next exercise.
Hi @ejcortinas
Excellent work 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!
Michael
@mikoMK It’s the little things. Thanks for catching that!
1 Like
Luckily, browsers are good at correcting our little mistakes
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