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