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