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