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