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