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