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