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