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