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