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