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