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