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