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