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