Use on the webTotal Use [ 4975 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/7227d22dc5e8d12716f1f1733f0b364c?family=FavoritPro-Regular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/7227d22dc5e8d12716f1f1733f0b364c?family=FavoritPro-Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FavoritPro-Regular";
src: url("https://db.onlinewebfonts.com/t/7227d22dc5e8d12716f1f1733f0b364c.eot");
src: url("https://db.onlinewebfonts.com/t/7227d22dc5e8d12716f1f1733f0b364c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/7227d22dc5e8d12716f1f1733f0b364c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/7227d22dc5e8d12716f1f1733f0b364c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/7227d22dc5e8d12716f1f1733f0b364c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/7227d22dc5e8d12716f1f1733f0b364c.svg#FavoritPro-Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "FavoritPro-Regular";