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