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