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