I wan to set Barlow and Fraunces in my CSS. But every time i try to import and use that font family, there doesn’t seem to be any changes and font still seems to be Times New Roman.
I tried this
@import url(https://fonts.google.com/specimen/Barlow);
body{
font-family: 'Barlow';
}
2
Answers
That’s because you have to include your
font-weight
andfont-style
properties in your CSS code:You can try this