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