Search code examples
htmlmarkup

What is the markup for this table?


enter image description here

Im really stuck making the markup for this kind of table I almost spend 2hrs reading the difference between rowspan and colspan. Im badly need help for this guys.

Thanks


Solution

  • Code for first two rows:

    <html>
    <head>
    <title>
    </title>
    </head>
    <body>
    <table border="2">
        <tr>
            <td rowspan="2">Diversifier Portfolio PDF</td>
            <td>Investment Management</td>
            <td>0.30%</td>
            <td rowspan="2">0.40%</td>
        </tr>
        <tr>
            <td>Administration</td>
            <td>0.10%</td>      
        </tr>
    </table>
    </body>
    </html>
    

    Edit: I was too slow :'(