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