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