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