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