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