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