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