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