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