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