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