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