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