0

How to change the font style of html.

27th Sep 2017, 9:51 AM
SparkZHarrY
SparkZHarrY - avatar
2 Réponses
+ 7
Use <font face = 'fontname') ... Text....</font> or you can use inline styling <p style = 'font-family: Fontname'>
27th Sep 2017, 1:31 PM
un1xx
un1xx - avatar
+ 2
use CSS body{ /* or any selector */ font-family: 'arial'; /* in case by style you meant font type*/ font-style: italic; }
27th Sep 2017, 11:11 AM
CHMD
CHMD - avatar