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