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