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