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