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