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