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