Content not appearing in word doc

Hi,

the html below is being generated into a word doc.
however, the word ‘content’ in between the div tags is not appearing.

help appreciated,

thanks,

Brian

<STYLE TYPE="text/css">
    BODY {
        FONT-FAMILY: arial;
        FONT-SIZE: 9pt;
        align: left;
    }
</STYLE>
<table width="100%">
    <tr>
        <td align="left"><font style="FONT-FAMILY:arial;FONT-SIZE:12pt;FONT-WEIGHT:bolder; ">Borrowers Corrective Action Plan:</font></td>
    </tr>
</table>
<table width="100%">
    <tr>
        <td align="left"><font style="FONT-FAMILY:arial;FONT-SIZE:9pt;FONT-WEIGHT:bolder; ">Overview:</font></td>
    </tr>
</table>
<table width="100%">
    <tr><DIV>content</DIV></tr>
</table>
<table width="100%">
    <tr>
        <td align="left"><font style="FONT-FAMILY:arial;FONT-SIZE:9pt;FONT-WEIGHT:bolder; ">Specification Action:</font></td>
    </tr>
    <tr>
        <td><font></font></td>
    </tr>
</table>

Hi

Thanks for your inquiry. Your HTML is incorrect. There must be at least one cell in the table. Please see the following HTML:

<table width="100%">
    <tr>
        <td>
            <div>content</div>
        </td>
    </tr>
</table>

Best regards,