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