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