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