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