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