HTML Table Tag without the Thead Tag

html

Solution

According to the HTML Living standard, it is optional inside a `<TABLE>` tag. The '?' in `THEAD?` means optional.

Problem

Is the markup still valid if I try to use a table tag without the thead tag?

Original source