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