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