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