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