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