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