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