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