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