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