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