how do I make this table using html make Solution table th t
how do I make this table using html
makeSolution
<!DOCTYPE html>
 <html>
 <style>
 table, th, td {
 border: 1px solid black;
 border-collapse: collapse;
 padding: 25px;
 text-align: center;
 }
 </style>
 <body>
 <table>
    <tr>
        <td rowspan=\"2\" colspan=\"2\"></td>
        <td colspan=\"2\"></td>
        <td colspan=\"2\"></td>  
    </tr>
    <tr>
    <td></td>
        <td></td>
        <td></td>
        <td></td>
    </tr>
    <tr>
        <td rowspan=\"3\"></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
    </tr>
    <tr>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
    </tr>
    <tr>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
    </tr>
</table>
 </body>
 </html>

