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