Not in Printing document

If i gave this below mentioned HTML Coding,it will not comes after pdf download

<div style="text-align:center;border:1px solid#999; padding:8px"><b>...THIS IS COMPUTER GENERATED INVOICE ...</b></div>
<div style="float:right;text-align:center;border:2px solid#000;width:200px; height:72px;margin-bottom:10px;"><b>For UP GROWER CONCERN</b>
&nbsp;
&nbsp;
<i>Authorised Signatory</i></div>
&nbsp;
&nbsp;
&nbsp;

PDF generator doesn’t support float:right style. But you can overcome this but using table-layout.

<div style="text-align:center;border:1px solid#999; padding:8px"><b>...THIS IS COMPUTER GENERATED INVOICE ...</b></div>
<table>
   <tr>
      <td></td>
      <td style="width: 200px; text-align:center; border:2px solid#000;width:200px; padding:10px;">
         <b>For UP GROWER CONCERN</b>
         <br />
         <br />
         <i>Authorised Signatory</i>
      </td>
   </tr>
</table>

Sorry sir where i should give this coding because i gave this coding at theme section but again it is not come for printing document

ok sir problem solved