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