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