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