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