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