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