c# - how to change font family of urdu characters in a textbox -
i using jquery convert english characters urdu characters in text box (asp: server side control ). want change font family of these urdu characters. there way or library, having collection of font families, change font family?
please use inline css in div,span,p or tag in :
for html:
<input style="font-family:georgia, serif" value="اڈوبی عریبک بولڈ"/>
for asp:
<asp:textbox id = textbox1 runat ="server" style="font-family:georgia, serif" />
instead of georgia, serif use font-family
Comments
Post a Comment