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