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