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