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