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