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