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