如何在 html 中创建这些类型的表

How can I create these type of tables in html

如何在 html 中创建这些类型的表格?绿色的是主要 header 并且有一些主要 header 有子 header。 我尝试了很多解决方案,但我不知道它是如何工作的。

这里是使用 rowspan 和 colspan 的例子。

<table border="1" cellspacing="0">
    <thead>
        <tr>
            <th rowspan="2">header</th>
            <th rowspan="2">header</th>
            <th colspan="4">header</th>
            <th rowspan="2">header</th>
        </tr>
        <tr>
            <th>subheader</th>
            <th>subheader</th>
        
        </tr>
    </thead>

参考this了解更多信息