+ 1
How to add two fonts in css ?
I have written code like this, @font-face { font-face: "name"; src: url("...."); } .class { font-family: "name"; } How to add second font ?
2 Answers
0
hey ℋℜҜ
you can put more than one font source
and then use it in specific tag
something like:
.headers {
font-family: "name";
}
.paragraph {
font-family: "other-name";
}
wish you luck 🙏🏻
0
Dror Krief , how to add another url ?