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