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