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