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