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