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