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