how to use the font color html -
i use font color here. seems don't know put code :
<html> <tr> <td style="padding-left: 5px;"> 11.15 - 12.00 </td> <td style="padding-left: 5px; padding-bottom:3px;"> <b> test </b><br/></td> </tr> </html>
to set font colour, set color attribute in style:
<table> <tr> <td style="padding-left: 5px; padding-bottom:3px; color:#ff0000; font-weight:bold">test</td> </tr> </table>
this render word test in red.
Comments
Post a Comment