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