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