0
how to change font styles?
7 ответов
+ 3
in HTML style="font-face:'Arial,Comic Sans Serif;" Or http://fonts.google.com you can use other fonts.
+ 3
<font style = ' Times New Roman'>.....Your Text here.....</ font>
+ 2
The best openion is use CSS
+ 1
You can use inline css to change font style
For example consider you want to change the font style of a paragraph tag
you can use style attribute in paragraph tag
<p style="font-family="sans";font-style="italic";color="red";">This is a paragraph</p>
you can also use style tag in head element also.
0
<font face=anyfontyouhave>
0
You can put your text in a paragraph and use inline styling to set the font.
<p style="font-family:monaco;"/>Here is your answer</font></p>
<p>This is normal text</p>
0
thanks