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