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