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