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