Use on the webTotal Use [ 4414 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/00ab05c892e8c8105c72c4547d8905ce?family=Fargas" 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/00ab05c892e8c8105c72c4547d8905ce?family=Fargas);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Fargas";
src: url("https://db.onlinewebfonts.com/t/00ab05c892e8c8105c72c4547d8905ce.eot");
src: url("https://db.onlinewebfonts.com/t/00ab05c892e8c8105c72c4547d8905ce.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/00ab05c892e8c8105c72c4547d8905ce.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/00ab05c892e8c8105c72c4547d8905ce.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/00ab05c892e8c8105c72c4547d8905ce.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/00ab05c892e8c8105c72c4547d8905ce.svg#Fargas")format("svg");
}
2CSS rules to specify fonts
font-family: "Fargas";