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