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