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