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