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