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