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