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