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