what property is used for changing the font face?
ReportQuestion
2 years ago 878 views
We can use the font-family property for achieving this. The font-family property is used for specifying what font needs to be applied on the targetted DOM element. It can hold several font names as part of “fallback” mechanism in case the browser does not support the fonts. For example, we can use:
p {
font-family: "Times New Roman", Times, serif;
}
Thread Reply