0
How to change the font style of html.
2 Respuestas
+ 7
Use <font face = 'fontname') ... Text....</font>
or you can use inline styling <p style = 'font-family: Fontname'>
+ 2
use CSS
body{ /* or any selector */
font-family: 'arial'; /* in case by style you meant font type*/
font-style: italic;
}