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