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