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