How to merge with table

how do I implement this layout with html"s table?

Mar.21,2021

http://www.w3school.com.cn/ta.
http://www.w3school.com.cn/ta.
table with these two attributes should meet your needs


rowspan, Colspan can meet your needs


first step: write a table tag in html. You can first compose it into 7 rows and 6 columns and then complete the table layout by manipulating tr td. This whole is not difficult, as long as you are proficient in using html and css, you can do it. I hope it will help you


<table>
            <tbody>
                <tr>
                    <td colspan="2"></td>
                    
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td></td>
                    <td></td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    <td rowspan ="2"></td>
                    <td></td>
                    <td></td>
                    <td></td>
                </tr>
                <tr>
                    
                    <td></td>
                    <td></td>
                    <td></td>
                </tr>
            </tbody>
        </table>

rowspan indicates merging parallelism. To delete a td of the next tr
colspan means merging to delete the td in its own tr

Menu